apollo-nico
Version:
对 nico 及 apollo-theme 的封装,方便跨平台使用
28 lines (25 loc) • 623 B
HTML
{% extends "layout.html" %}
{%- block title -%}{{config.package.name|title}} - {{post.title}}{%- endblock -%}
{% block content %}
<article class="hentry">
<h1 class="entry-title">{{post.title}}</h1>
<!-- <div class="meta">{{post.updated|date('Y-m-d')}}</div> -->
<div class="entry-content">
{{ post.html|history_tags_beautyfy }}
</div>
</article>
<style>
#content p {
border-top: 1px dashed #CCCCCC;
font-size: 16px;
margin: 12px 0;
padding: 12px 0 0 0;
position: relative;
}
#content h2 {
margin-top: 60px;
font-family: Georgia;
border-bottom: none;
}
</style>
{% endblock %}