A charming Jekyll theme. linus.arthr.dev/
jekyll-theme
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat(layout): applies main header and footer

+31 -1
+31 -1
_layouts/default.html
··· 1 - {{ content }} 1 + <!DOCTYPE html> 2 + <html lang="{{ page.lang | default: site.lang }}"> 3 + <head> 4 + <meta charset="utf-8" /> 5 + <meta name="viewport" content="width=device-width, initial-scale=1" /> 6 + 7 + {% if page.title and page.title != "" -%} 8 + <title>{{ page.title }} ({{- site.title -}})</title> 9 + {%- else -%} 10 + <title>{{ site.title }} {%- if site.tagline %} ~ {{ site.tagline }}{%- endif -%}</title> 11 + {%- endif %} 12 + {% seo title=false %} 13 + 14 + {%- feed_meta -%} 15 + {%- json_feed_meta -%} 16 + 17 + {% for link in site.seo.links %} 18 + <link rel="me" href="{{ link }}" /> 19 + {% endfor %} 20 + </head> 21 + <body> 22 + {% include header.html %} 23 + 24 + <main class="site-content"> 25 + {{ content }} 26 + </main> 27 + 28 + 29 + {% include footer.html %} 30 + </body> 31 + </html>