this repo has no description

ft: publish post about logging

Changed files
+17 -2
content
sass
templates
shortcodes
+1
config.toml
···
[extra]
author = "Hauleth"
theme_color = "blue"
logo_text = "~hauleth"
···
[extra]
author = "Hauleth"
+
for_hire = true
theme_color = "blue"
logo_text = "~hauleth"
-1
content/post/log-all-the-things.md
···
+++
title = "Log all the things"
date = 2021-10-13
-
draft = true
[taxonomies]
tags = [
···
+++
title = "Log all the things"
date = 2021-10-13
[taxonomies]
tags = [
+9
sass/_post.scss
···
a:hover { text-decoration: underline; }
}
···
a:hover { text-decoration: underline; }
}
+
+
.for-hire {
+
width: 100%;
+
text-align: center;
+
font-weight: bolder;
+
+
border: 1px white solid;
+
padding: 1em;
+
}
+6
templates/page.html
···
<div class="post-content e-content">
{{ page.content | safe }}
</div>
{%- if page.extra.thanks -%}
<hr />
<p>
···
<div class="post-content e-content">
{{ page.content | safe }}
</div>
+
{%- if config.extra.for_hire -%}
+
<div class="for-hire">
+
<p>Author of this post is curently open for hire.<p>
+
<p>You can contact me at <a href="lukasz@niemier.pl">lukasz@niemier.pl</a></p>
+
</div>
+
{%- endif -%}
{%- if page.extra.thanks -%}
<hr />
<p>
+1 -1
templates/shortcodes/readme.md
···
Observability WG</a></span> where we are trying to improve observability
features in Erlang ecosystem.
-
I am currently contracted. If you want to inquiry me about my services then
contact me at <a class="u-email"
href="mailto:lukasz@niemier.pl">lukasz@niemier.pl</a>.
···
Observability WG</a></span> where we are trying to improve observability
features in Erlang ecosystem.
+
I am open for hire. If you want to inquiry me about my services then
contact me at <a class="u-email"
href="mailto:lukasz@niemier.pl">lukasz@niemier.pl</a>.