My personal blog hauleth.dev
blog
0
fork

Configure Feed

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

chore: update layout of the blog

+22 -25
-1
.ignore
··· 1 1 /static 2 - /themes 3 2 /styles
+2 -2
config.toml
··· 41 41 # Must be placed in root of static/ directory... 42 42 # og_preview_img = "" 43 43 44 - copyright = "copyright by hauleth" 44 + copyright = "copyright by <a href=\"https://hauleth.dev\" rel=me>hauleth</a>" 45 45 46 46 # Menu items to display. You define a url and the name of the menu item. 47 47 # NOTE: `$BASE_URL/` must be included in the url name. 48 48 main_menu = [ 49 - {url="/about/", name="about"}, 49 + {url="/post/", name="blog"}, 50 50 {url="https://twitter.com/hauleth", name="twitter", rel="me"}, 51 51 {url="https://github.com/hauleth", name="github", rel="me"}, 52 52 ]
+4 -4
content/_index.md
··· 1 1 +++ 2 - sort_by = "date" 3 - transparent = false 4 - paginate_by = 4 5 - insert_anchor_links = "right" 2 + title = "Hauleth" 3 + template = "section.html" 6 4 +++ 5 + 6 + {{ readme() }}
-9
content/about.md
··· 1 - +++ 2 - title = "hauleth" 3 - transparent = false 4 - 5 - [extra] 6 - no_comments = true 7 - +++ 8 - 9 - {{ readme() }}
+3 -2
content/post/_index.md
··· 1 1 +++ 2 - transparent = true 3 - render = false 2 + sort_by = "date" 3 + paginate_by = 1000 4 4 insert_anchor_links = "right" 5 + template = "index.html" 5 6 +++
+4 -7
sass/_footer.scss
··· 23 23 } 24 24 25 25 .copyright { 26 + width: 100%; 26 27 display: flex; 27 - flex-direction: row; 28 + flex-direction: column; 28 29 align-items: center; 30 + justify-content: center; 29 31 // so `--light-color-secondary` color exists no where else in the stylings 30 32 // color: var(--light-color-secondary); 31 33 // As a substitute, I'm going to use the alpha-70 version of accent. 32 34 color: var(--accent-alpha-70); 33 35 34 - &--user { 35 - margin: auto; 36 - text-align: center; 37 - } 38 - 39 36 & > *:first-child:not(:only-child) { 40 37 margin-right: 10px; 41 38 ··· 45 42 } 46 43 47 44 @media (max-width: $tablet-max-width) { 48 - flex-direction: column; 45 + // flex-direction: column; 49 46 margin-top: 10px; 50 47 } 51 48 }
+9
templates/index.html
··· 9 9 {%- endif -%} 10 10 {% endblock %} 11 11 12 + {% block copyright %} 13 + <div class="copyright"> 14 + <div class="copyright--user">{{ config.extra.copyright | safe }}</div> 15 + <div class="copyright--tracking"> 16 + Public tracking available at <a href="https://plausible.io/hauleth.dev">Plausible.io</a> 17 + </div> 18 + </div> 19 + {% endblock copyright %} 20 + 12 21 {% block script %} 13 22 <script async defer data-domain="hauleth.dev" src="https://plausible.io/js/plausible.js"></script> 14 23 {% endblock script %}