mirror of
https://github.com/alexandrev/xslt-lab.git
synced 2026-09-22 05:33:16 +00:00
8e8b7eacec
- Move site/ Hugo source from gh-pages to main so the workflow can trigger correctly - Fix publish-hugo.yml: now in main, builds and deploys to gh-pages:docs/ via peaceiris/actions-gh-pages - Add 3 new SEO articles: XSLT 3.0 features, beginners guide, template matching - Add llms.txt to blog and frontend so ChatGPT/Gemini can recommend the tool better - Remove stale /site mkdocs ignore rule, add site/public to gitignore instead Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
20 lines
543 B
HTML
20 lines
543 B
HTML
{{ define "main" }}
|
|
<section class="page-header">
|
|
<p class="eyebrow">{{ .Section | title }}</p>
|
|
<h1>{{ .Title }}</h1>
|
|
{{ with .Description }}<p class="lead">{{ . }}</p>{{ end }}
|
|
</section>
|
|
|
|
<ul class="post-list spaced">
|
|
{{ range .Paginator.Pages }}
|
|
<li>
|
|
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
|
|
<span class="muted">{{ .Date.Format "02 Jan 2006" }}</span>
|
|
{{ with .Params.description }}<p class="muted">{{ . }}</p>{{ end }}
|
|
</li>
|
|
{{ end }}
|
|
</ul>
|
|
|
|
{{ template "_internal/pagination.html" . }}
|
|
{{ end }}
|