My personal blog hauleth.dev
blog
0
fork

Configure Feed

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

ft: add information about code type

+39 -26
+2 -2
content/post/who-watches-watchmen-i.md
··· 315 315 Now restarting our service will not finish immediately, but will wait until our 316 316 service will declare that it is ready. 317 317 318 - ```shell 318 + ``` 319 319 # systemctl restart hello.service 320 320 ``` 321 321 ··· 357 357 358 358 Now when we will shutdown our application by: 359 359 360 - ```shell 360 + ``` 361 361 # systemctl stop hello.service 362 362 ``` 363 363
+14
sass/_main.scss
··· 111 111 overflow: auto; 112 112 border-top: 1px solid rgba(255, 255, 255, .1); 113 113 border-bottom: 1px solid rgba(255, 255, 255, .1); 114 + position: relative; 114 115 115 116 + pre { 116 117 border-top: 0; ··· 120 121 @media (max-width: $phone-max-width) { 121 122 white-space: pre-wrap; 122 123 word-wrap: break-word; 124 + } 125 + 126 + &[data-lang]::before { 127 + content: attr(data-lang); 128 + display: block; 129 + position: absolute; 130 + top: 0; 131 + right: 0; 132 + padding: .2em .5em; 133 + font-weight: bold; 134 + font-size: .9rem; 135 + border-radius: 0 0 0 6px; 136 + background-color: var(--accent-alpha-20); 123 137 } 124 138 125 139 code {
+22
sass/feed.scss
··· 1 + body { 2 + color: #222; 3 + font-family: apple-system, system-ui, sans-serif; 4 + } 5 + .container { 6 + align-item: center; 7 + display: flex; 8 + justify-content: center; 9 + } 10 + .item { 11 + max-width: 768px; 12 + } 13 + a { 14 + color: #4166f5; 15 + text-decoration: none; 16 + } 17 + a:visited { 18 + color: #3f00ff; 19 + } 20 + a:hover { 21 + text-decoration: underline; 22 + }
+1 -24
static/atom-style.xml
··· 12 12 <meta name="referrer" content="none" /> 13 13 14 14 <!-- FAVICONS CAN GO HERE --> 15 - <style type="text/css"> 16 - body { 17 - color: #222; 18 - font-family: apple-system, system-ui, sans-serif; 19 - } 20 - .container { 21 - align-item: center; 22 - display: flex; 23 - justify-content: center; 24 - } 25 - .item { 26 - max-width: 768px; 27 - } 28 - a { 29 - color: #4166f5; 30 - text-decoration: none; 31 - } 32 - a:visited { 33 - color: #3f00ff; 34 - } 35 - a:hover { 36 - text-decoration: underline; 37 - } 38 - </style> 15 + <link href="/feed.css" rel="stylesheet" /> 39 16 </head> 40 17 <body> 41 18 <div class="container">