A charming Jekyll theme.
jekyll-theme

add translations config

+43 -1
+43 -1
_config.yml
··· 1 1 title: Linus 2 2 description: A blog theme for Jekyll. 3 3 4 + lang: en 5 + 6 + logo: /assets/icon.png 7 + 4 8 # Theme Settings / TODO: Doc 9 + category_colors: 10 + - name: Links 11 + color: "#f0e68c" 12 + - name: Notes 13 + color: "#fa8072" 14 + 15 + date_formats: 16 + day: "%b %d, ’%y" 17 + month: "%b, ’%y" 18 + year: "%Y" 19 + 20 + translations: 21 + archive_date_title: "Archives from %date" 22 + archive_tag_title: "Posts tagged with %tag" 23 + archive_category_title: "Posts filed under %category" 24 + blog_pagination_title: "Blog pagination" 25 + blog_pagination_prev_page: "Previous page" 26 + blog_pagination_next_page: "Next page" 27 + 5 28 main_menu: 6 29 title: Navigate 7 30 items: ··· 27 50 rel: alternate 28 51 29 52 # Build Settings 53 + permalink: "/:year/:month/:day/:title:output_ext" 54 + 55 + paginate: 2 56 + paginate_path: "/pg/:num/" 57 + 30 58 plugins: 31 59 - jekyll-feed 32 60 - jekyll-json-feed 33 61 - jekyll-seo-tag 62 + - jekyll-archives 63 + - jekyll-url-metadata 64 + - jekyll-sitemap 65 + - jekyll-paginate 34 66 67 + jekyll-archives: 68 + enabled: all 69 + layout: blog 70 + permalinks: 71 + category: "/:name/" 72 + tag: "/tag/:name/" 73 + year: "/:year/" 74 + month: "/:year/:month/" 75 + day: "/:year/:month/:day/" 76 + 35 77 seo: 36 78 name: Linus 37 79 links: 38 80 - https://tangled.org/arthr.me/linus 39 - 81 + - https://bsky.app/profile/arthr.me