this repo has no description

fix: favicon

+1 -1
config.toml
···
# feel like adding it.
read_other_posts = "read other posts"
-
favicon = "/favicon-32x32.png"
+
favicon = "favicon-32x32.png"
+4 -4
content/post/common-test-for-elixir.md
···
"common_test",
"commoner"
]
+
+
[[extra.thanks]]
+
name = "José Valim"
+
why = "for reading it through and reviewing before publishing"
+++
In my new job I have opportunity to work a little bit more with Erlang code and
···
- On [Elixir forum thread about Commoner][forum]
- On Twitter via `@hauleth`
-
-
### Special thanks
-
-
- José Valim - for reading it through and reviewing before publishing
[ct]: http://erlang.org/doc/apps/common_test/basics_chapter.html
[ctex]: https://github.com/Comcast/ctex
+1 -1
content/post/who-watches-watchmen-i.md
···
This blog post is already quite lengthy, so I will split it into separate parts.
There probably will be 3 of them:
-
- [Part 1 - Basics, security, and FD passing (this one)](?1)
+
- [Part 1 - Basics, security, and FD passing (this one)](?)
- Part 2 - Socket activation
- Part 3 - Logging
+9
templates/macros/posts.html
···
#<a class="p-category" href="{{get_taxonomy_url(kind="tags", name=tag )}}">{{ tag }}</a>
{% endfor -%}
{% endmacro tags %}
+
+
{% macro thanks(who) %}
+
{%- if who.why -%}
+
{{ who.name }} - {{ who.why }}
+
{%- else -%}
+
{{ who.name }}
+
{%- endif -%}
+
{% endmacro %}
+
+3 -3
templates/page.html
···
{%- block main -%}
<article class="post h-entry">
<h1 class="post-title p-name">
-
<a href="{{ page.permalink }}">{{ page.title }}</a>
+
<a id="top" href="{{ page.permalink }}">{{ page.title }}</a>
</h1>
{{ posts::meta(page=page, author=config.extra.show_author) }}
{%- if page.toc | length >= 5 -%}
···
<li class="h-card">
{%- if person is object -%}
{%- if person.url -%}
-
<a class="u-url p-name" href="{{ person.url }}">{{ person.name }}</a>
+
<a class="u-url p-name" href="{{ person.url }}">{{ posts::thanks(who=person) }}</a>
{%- else -%}
-
<span class="p-name">{{ person.name }}</span>
+
<span class="p-name">{{ posts::thanks(who=person) }}</span>
{%- endif -%}
{%- else -%}
<span class="p-name">{{ person }}</span>