Fixes #886 - The content area in `<main>` was hardcoded to `hx:max-w-6xl` (72rem), ignoring the `params.page.width` setting. Added a new CSS variable `--hextra-max-content-width` that responds to the page width config, so users can now get full-width or wide content as expected.
23 lines
1.1 KiB
HTML
23 lines
1.1 KiB
HTML
{{ define "main" }}
|
|
<div class='hx:mx-auto hx:flex hextra-max-page-width'>
|
|
{{ partial "sidebar.html" (dict "context" .) }}
|
|
{{ partial "toc.html" . }}
|
|
<article class="hx:w-full hx:break-words hx:flex hx:min-h-[calc(100vh-var(--navbar-height))] hx:min-w-0 hx:justify-center hx:pb-8 hx:pr-[calc(env(safe-area-inset-right)-1.5rem)]">
|
|
<main class="hx:w-full hx:min-w-0 hextra-max-content-width hx:px-6 hx:pt-4 hx:md:px-12">
|
|
{{ partial "breadcrumb.html" (dict "page" . "enable" true) }}
|
|
<div class="content">
|
|
{{ if .Title }}
|
|
<div class="hx:flex hx:flex-col hx:sm:flex-row hx:items-start hx:sm:items-center hx:sm:justify-between hx:gap-4 hx:mb-4">
|
|
<h1 class="hx:mb-0">{{ .Title }}</h1>
|
|
{{ partial "components/page-context-menu" . }}
|
|
</div>
|
|
{{ end }}
|
|
{{ .Content }}
|
|
</div>
|
|
{{ partial "components/last-updated.html" . }}
|
|
{{ partial "components/pager.html" . }}
|
|
{{ partial "components/comments.html" . }}
|
|
</main>
|
|
</article>
|
|
</div>
|
|
{{ end }} |