my website at https://anirudh.fi
4
fork

Configure Feed

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

reading: update

+19 -15
+1 -1
pages/reading.yaml
··· 11 11 - name: Dune Messiah 12 12 link: https://en.wikipedia.org/wiki/Dune_Messiah 13 13 author: Frank Herbert 14 - status: now reading 14 + status: ★★★★ 15 15 - name: Dust 16 16 link: https://en.wikipedia.org/wiki/Silo_(series) 17 17 author: Hugh Howey
+12 -10
static/style.css
··· 108 108 margin: 40px 0 20px 0; 109 109 } 110 110 111 - .logo svg { 111 + .logo { 112 + svg { 112 113 max-height: 2.5rem; 113 114 max-width: 2.5rem; 114 115 transform: translateY(-10%); 115 116 fill: var(--fg); 116 - } 117 + 118 + } 117 119 118 - .logo { 119 - flex-grow: 1; 120 - margin-right: 1rem; 121 - text-decoration: none; 122 - border-bottom: unset; 123 - background: unset !important; 124 - } 120 + flex-grow: 1; 121 + margin-right: 1rem; 122 + text-decoration: none; 123 + border-bottom: unset; 124 + background: unset !important; 125 125 126 - .logo:hover { 126 + a, a:hover { 127 127 border-bottom: unset; 128 + } 128 129 } 129 130 130 131 .footimgs a { ··· 283 284 vertical-align: baseline; 284 285 color: var(--gray); 285 286 text-transform: lowercase; 287 + padding-left: 0.8rem; 286 288 float: right; 287 289 } 288 290 }
+2 -2
templates/blog.html
··· 23 23 {{ range $posts }} 24 24 <li> 25 25 <div class="post"> 26 - <a href=/blog/{{ .Meta.slug }}>{{ .Meta.title }}</a> 26 + <a style="text-transform: lowercase" href=/blog/{{ .Meta.slug }}>{{ .Meta.title }}</a> 27 27 {{ if .Meta.draft }} 28 28 (<span class="draft">draft</span>) 29 29 {{ end }} 30 - <p class="subtitle">{{ .Meta.subtitle }}</p> 30 + <p style="text-transform: lowercase" class="subtitle">{{ .Meta.subtitle }}</p> 31 31 </div> 32 32 {{ $dateStr := .Meta.date }} 33 33 {{ $date := parsedate $dateStr }}
+1 -1
templates/index.html
··· 26 26 {{ range slice $posts 0 3 }} 27 27 <li> 28 28 <div class="post"> 29 - <a href=/blog/{{ .Meta.slug }}>{{ .Meta.title }}</a> 29 + <a style="text-transform: lowercase" href=/blog/{{ .Meta.slug }}>{{ .Meta.title }}</a> 30 30 {{ if .Meta.draft }} 31 31 (<span class="draft">draft</span>) 32 32 {{ end }}
+3 -1
templates/partials/nav.html
··· 1 1 <nav> 2 - <a href="/" class="logo"> 2 + <div class="logo"> 3 + <a href="/"> 3 4 <svg 4 5 version="1.0" 5 6 xmlns="http://www.w3.org/2000/svg" ··· 44 45 </g> 45 46 </svg> 46 47 </a> 48 + </div> 47 49 <ul> 48 50 <li><a href="/reading">reading</a></li> 49 51 <li><a href="/photos">photos</a></li>