Sha256: 29a539ad0cef82066aee9355114d1b57ec7bfa250c0b9d2b4105b2a2d66104d3
Contents?: true
Size: 908 Bytes
Versions: 17
Compression:
Stored size: 908 Bytes
Contents
{% assign writer = page.id | remove_first: ".html" | split: "/" | slice: -1 | join: '' %} {% for cat in site.categories %} {% assign w = cat[0] | downcase %} {% if writer == w %} {% assign posts = cat[1] %} {% assign author = cat[0] | replace: "_", " " %} {% break %} {% endif %} {% endfor %} <!doctype html> <html lang="en"> {% include header.html %} <body> {% include logo.html image=site.acn.logo.alt_image size=site.acn.logo.alt_size title=author %} {% if content %} <article class="{{ page.style | default: 'center' }}" > {% if page.image %} <img src="{{ page.image }}" alt="{{ author }}" width="{{ page.size }}" height="{{ page.size }}"/> {% endif %} {{ content }} </article> {% endif %} {% if posts.size and author %} {% include grid.html posts=posts %} {% endif %} {% include footer.html %} </body> </html>
Version data entries
17 entries across 17 versions & 1 rubygems