Sha256: 049114841c485eb965d6e5093edf249ff5b7468074e6d8d0c960134588366b03
Contents?: true
Size: 1.29 KB
Versions: 11
Compression:
Stored size: 1.29 KB
Contents
<!doctype html> <html lang="en"> {% include header.html %} <body> {% include logo.html %} <section class="center-align"> <article> <header> {% if page.image %} <img width="100%" src="{{ page.image }}" alt="{{ page.source }}" /> {% endif %} <h1>{{ page.title }}</h1> <small>{{ page.date | date: site.acn.date_format }}</small> {% include writer.html info=page %} {% if writer_url %} <h5><a href="{{ writer_url }}">{{ writer }}</a></h5> {% else %} <h5>{{ writer }}</h5> {% endif %} </header> <div class="text">{{ page.content }}</div> {% if page.tags %} <div class="spacer tags"> {% for tag in page.tags %} <small>{{ tag }}</small> {% endfor %} </div> {% endif %} {% if page.source and page.source_url %} <div class="middle-align source"> <span class="material-icons">source</span> <div> Source: <a target="_blank" href="{{ page.source_url }}">{{ page.source }}</a> </div> </div> {% endif %} </div> </section> {% include post/paginator.html %} {% include footer.html %} </body> </html>
Version data entries
11 entries across 11 versions & 1 rubygems