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(page): new layout

+25 -2
+15 -1
_layouts/page.html
··· 2 2 layout: default 3 3 --- 4 4 5 - {{ content }} 5 + <article class="post"> 6 + <header class="post-header"> 7 + {%- if page.title and page.title != "" -%} 8 + <h1 class="post-titlee"> 9 + {{- page.title -}} 10 + </h1> 11 + {%- endif -%} 12 + </header> 13 + 14 + <div class="post-content e-content"> 15 + {{ content }} 16 + </div> 17 + </article> 18 + 19 +
+10 -1
assets/css/layout.css
··· 110 110 display: flex; 111 111 flex-flow: row wrap; 112 112 align-items: center; 113 + gap: var(--spacing); 113 114 margin-bottom: calc(var(--spacing) * 2); 114 115 115 116 .site-branding { ··· 136 137 .site-title { 137 138 display: block; 138 139 font-size: 2.5rem; 139 - line-height: 1.6; 140 + line-height: 1; 140 141 } 141 142 } 142 143 ··· 311 312 max-width: 420px; 312 313 margin-left: auto; 313 314 } 315 + 316 + .footer-menu { 317 + display: flex; 318 + flex-flow: column nowrap; 319 + align-items: flex-start; 320 + gap: calc(var(--spacing) / 2); 321 + margin-top: var(--spacing); 322 + }