Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,18 @@ minify:
disableXML: true
minifyOutput: true

# llms.txt: a plain-text index of the site for LLM consumption.
# See https://llmstxt.org/ — generated from layouts/llms.txt in the PaperMod theme.
outputFormats:
llms:
mediaType: "text/plain"
baseName: "llms"
isPlainText: true
notAlternative: true

outputs:
home: ["HTML", "RSS", "llms"]

pagination:
disableAliases: false
pagerSize: 5
Expand Down
1 change: 1 addition & 0 deletions content/about.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
---
title: "About"
layout: "single"
url: "/about"
summary: About
Expand Down
1 change: 1 addition & 0 deletions content/chrispanag-on-the-web/index.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
---
title: "Christos on the web"
layout: "single"
url: "/chrispanag-on-the-web"
summary: Christos on the web
Expand Down
2 changes: 1 addition & 1 deletion themes/PaperMod
Submodule PaperMod updated 75 files
+1 −1 .github/PULL_REQUEST_TEMPLATE.md
+56 −0 .github/workflows/build-check.yml
+17 −12 .github/workflows/gh-pages.yml
+1 −1 LICENSE
+67 −74 README.md
+13 −17 assets/css/common/footer.css
+51 −43 assets/css/common/header.css
+253 −0 assets/css/common/md-content.css
+27 −5 assets/css/common/post-entry.css
+65 −263 assets/css/common/post-single.css
+3 −12 assets/css/common/profile-mode.css
+21 −25 assets/css/common/search.css
+9 −8 assets/css/common/terms.css
+1 −1 assets/css/core/license.css
+4 −2 assets/css/core/theme-vars.css
+2 −2 assets/css/core/zmedia.css
+0 −63 assets/css/includes/scroll-bar.css
+179 −137 assets/js/fastsearch.js
+1 −1 assets/js/license.js
+1 −1 go.mod
+16 −2 i18n/ca.yaml
+0 −27 layouts/_default/baseof.html
+0 −27 layouts/_default/terms.html
+0 −0 layouts/_markup/render-image.html
+6 −0 layouts/_partials/anchored_headings.html
+10 −0 layouts/_partials/author.html
+20 −0 layouts/_partials/breadcrumbs.html
+0 −0 layouts/_partials/comments.html
+0 −0 layouts/_partials/cover.html
+20 −0 layouts/_partials/edit_post.html
+0 −0 layouts/_partials/extend_footer.html
+0 −0 layouts/_partials/extend_head.html
+4 −0 layouts/_partials/extend_post_content.html
+29 −15 layouts/_partials/footer.html
+49 −12 layouts/_partials/head.html
+32 −67 layouts/_partials/header.html
+3 −2 layouts/_partials/home_info.html
+0 −0 layouts/_partials/index_profile.html
+0 −0 layouts/_partials/post_canonical.html
+25 −0 layouts/_partials/post_meta.html
+0 −2 layouts/_partials/post_nav_links.html
+0 −0 layouts/_partials/share_icons.html
+0 −0 layouts/_partials/social_icons.html
+39 −20 layouts/_partials/svg.html
+0 −0 layouts/_partials/templates/_funcs/get-page-images.html
+4 −4 layouts/_partials/templates/opengraph.html
+0 −0 layouts/_partials/templates/schema_json.html
+15 −9 layouts/_partials/templates/twitter_cards.html
+95 −0 layouts/_partials/toc.html
+21 −0 layouts/_partials/translation_list.html
+2 −0 layouts/_shortcodes/audio.html
+0 −0 layouts/_shortcodes/collapse.html
+0 −0 layouts/_shortcodes/figure.html
+0 −0 layouts/_shortcodes/inTextImg.html
+0 −0 layouts/_shortcodes/ltr.html
+0 −0 layouts/_shortcodes/rawhtml.html
+0 −0 layouts/_shortcodes/rtl.html
+2 −0 layouts/_shortcodes/video.html
+0 −0 layouts/archives.html
+31 −0 layouts/baseof.html
+0 −0 layouts/index.json
+1 −1 layouts/list.html
+41 −0 layouts/llms.txt
+0 −2 layouts/partials/anchored_headings.html
+0 −9 layouts/partials/author.html
+0 −19 layouts/partials/breadcrumbs.html
+0 −8 layouts/partials/edit_post.html
+0 −23 layouts/partials/post_meta.html
+0 −97 layouts/partials/toc.html
+0 −19 layouts/partials/translation_list.html
+2 −13 layouts/rss.xml
+3 −3 layouts/search.html
+3 −1 layouts/single.html
+27 −0 layouts/taxonomy.html
+25 −9 theme.toml