add a shortcode for placing images. page section bloc, others details

This commit is contained in:
2023-11-13 15:02:34 +01:00
parent 52bedce0ce
commit fc2872e03e
9 changed files with 173 additions and 35 deletions

View File

@@ -41,8 +41,45 @@
}
}
----
<svg class="curve" preserveAspectRatio="none" viewBox="0 0 1440 96" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="m0 96 80-5.3C160 85 320 75 480 64s320-21 480-21.3c160 .3 320 10.3 400 16l80 5.3V0H0v96Z"></path>
</svg>
themes/hugoplate/layouts/
├── 404.html
├── about
│   └── list.html
├── authors
│   ├── list.html
│   └── single.html
├── blog
│   ├── list.html
│   └── single.html
├── contact
│   └── list.html
├── _default
│   ├── baseof.html
│   ├── list.html
│   ├── single.html // page
│   ├── taxonomy.html
│   └── terms.html
├── index.html // home
└── partials
├── call-to-action.html
├── components
│   ├── author-card.html
│   ├── blog-card.html
│   ├── breadcrumb.html
│   ├── language-switcher.html
│   ├── pagination.html
│   ├── theme-switcher.html
│   └── tw-size-indicator.html
├── essentials
│   ├── footer.html
│   ├── header.html // home
│   ├── head.html
│   ├── script.html
│   └── style.html
├── page-header.html // page
└── widgets
├── categories.html
├── tags.html
└── widget-wrapper.html