My personal blog hauleth.dev
blog
0
fork

Configure Feed

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

ft: publish post about logging

+17 -2
+1
config.toml
··· 21 21 22 22 [extra] 23 23 author = "Hauleth" 24 + for_hire = true 24 25 theme_color = "blue" 25 26 26 27 logo_text = "~hauleth"
-1
content/post/log-all-the-things.md
··· 1 1 +++ 2 2 title = "Log all the things" 3 3 date = 2021-10-13 4 - draft = true 5 4 6 5 [taxonomies] 7 6 tags = [
+9
sass/_post.scss
··· 162 162 163 163 a:hover { text-decoration: underline; } 164 164 } 165 + 166 + .for-hire { 167 + width: 100%; 168 + text-align: center; 169 + font-weight: bolder; 170 + 171 + border: 1px white solid; 172 + padding: 1em; 173 + }
+6
templates/page.html
··· 24 24 <div class="post-content e-content"> 25 25 {{ page.content | safe }} 26 26 </div> 27 + {%- if config.extra.for_hire -%} 28 + <div class="for-hire"> 29 + <p>Author of this post is curently open for hire.<p> 30 + <p>You can contact me at <a href="lukasz@niemier.pl">lukasz@niemier.pl</a></p> 31 + </div> 32 + {%- endif -%} 27 33 {%- if page.extra.thanks -%} 28 34 <hr /> 29 35 <p>
+1 -1
templates/shortcodes/readme.md
··· 10 10 Observability WG</a></span> where we are trying to improve observability 11 11 features in Erlang ecosystem. 12 12 13 - I am currently contracted. If you want to inquiry me about my services then 13 + I am open for hire. If you want to inquiry me about my services then 14 14 contact me at <a class="u-email" 15 15 href="mailto:lukasz@niemier.pl">lukasz@niemier.pl</a>. 16 16