mirror of
https://github.com/getpelican/pelican.git
synced 2025-10-15 20:28:56 +02:00
update
This commit is contained in:
parent
2bf5502781
commit
b1973f3bd7
3 changed files with 10 additions and 7 deletions
|
|
@ -10,7 +10,9 @@
|
|||
|
||||
/* Imports */
|
||||
@import url("reset.css");
|
||||
/*
|
||||
@import url("pygment.css");
|
||||
*/
|
||||
@import url("typogrify.css");
|
||||
|
||||
/***** Global *****/
|
||||
|
|
@ -99,7 +101,8 @@ li { margin-top: 0.5em;}
|
|||
margin-bottom: 1px;
|
||||
}
|
||||
|
||||
.readmore { float: right }
|
||||
.readmore {
|
||||
}
|
||||
|
||||
dl {margin: 0 0 1.5em 0;}
|
||||
dt {font-weight: bold;}
|
||||
|
|
@ -111,8 +114,8 @@ pre {
|
|||
-webkit-border-radius: 5px;
|
||||
display: block;
|
||||
padding: 0.5em;
|
||||
background: #4dd6f9;
|
||||
color: #0f0f0e;
|
||||
background: #001f3f;
|
||||
color: hsla(210, 100%, 75%, 1.0);
|
||||
margin-bottom: 1em;
|
||||
font-family: monospace, Arial, "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
|
||||
overflow-x: auto;
|
||||
|
|
|
|||
|
|
@ -1,17 +1,17 @@
|
|||
<footer class="post-info">
|
||||
<abbr class="published" title="{{ article.date.isoformat() }}">
|
||||
Published: {{ article.locale_date }}
|
||||
发布于: {{ article.locale_date }}
|
||||
</abbr>
|
||||
{% if article.modified %}
|
||||
<br />
|
||||
<abbr class="modified" title="{{ article.modified.isoformat() }}">
|
||||
Updated: {{ article.locale_modified }}
|
||||
更新于: {{ article.locale_modified }}
|
||||
</abbr>
|
||||
{% endif %}
|
||||
|
||||
{% if article.authors %}
|
||||
<address class="vcard author">
|
||||
By {% for author in article.authors %}
|
||||
作者: {% for author in article.authors %}
|
||||
<a class="url fn" href="{{ SITEURL }}/{{ author.url }}">{{ author }}</a>
|
||||
{% endfor %}
|
||||
</address>
|
||||
|
|
|
|||
|
|
@ -36,7 +36,7 @@
|
|||
<div class="entry-content">
|
||||
{% include 'article_infos.html' %}
|
||||
{{ article.summary }}
|
||||
<a class="readmore" href="{{ SITEURL }}/{{ article.url }}">read more</a>
|
||||
<a class="readmore" href="{{ SITEURL }}/{{ article.url }}">阅读全文</a>
|
||||
{% include 'comments.html' %}
|
||||
</div><!-- /.entry-content -->
|
||||
</article></li>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue