Update: home page css
This commit is contained in:
parent
9e87dfc702
commit
a5a2d684bf
|
@ -15,35 +15,42 @@
|
|||
<%- truncate(strip_html(post.content), {length: 80}) %>
|
||||
</div>
|
||||
|
||||
<div class="article-post-meta">
|
||||
|
||||
<span class="article-date">
|
||||
<i class="fa fa-calendar"></i>
|
||||
<!-- date -->
|
||||
<div class="article-meta">
|
||||
<span class="article-date article-item">
|
||||
<i class="fa fa-calendar-o"></i>
|
||||
<%= date(post.date, 'YYYY-MM-DD HH:MM:SS') %>
|
||||
</span>
|
||||
|
||||
<span class="article-tags">
|
||||
<!-- categories -->
|
||||
<% if (post.categories.length) { %>
|
||||
<span class="article-categories article-item">
|
||||
<i class="fa fa-bookmark"></i>
|
||||
<ul>
|
||||
<% post.categories.forEach((category, i) => { %>
|
||||
<li>
|
||||
<%= i === 0 ? '' : '| ' %><a href="<%- url_for(category.path) %>"
|
||||
rel="tag"><%= category.name %></a>
|
||||
</li>
|
||||
<% }); %>
|
||||
</ul>
|
||||
</span>
|
||||
<% } %>
|
||||
|
||||
<!-- tags -->
|
||||
<% if (post.tags.length) { %>
|
||||
<span class="article-tags article-item">
|
||||
<i class="fa fa-tags"></i>
|
||||
<ul>
|
||||
<% post.tags.forEach(tag => { %>
|
||||
<% post.tags.forEach((tag, i) => { %>
|
||||
<li>
|
||||
<a href="<%- url_for(tag.path) %>" rel="tag"><%= tag.name %></a>
|
||||
<%= i === 0 ? '' : '| ' %><a href="<%- url_for(tag.path) %>"
|
||||
rel="tag"><%= tag.name %></a>
|
||||
</li>
|
||||
<% }); %>
|
||||
</ul>
|
||||
</span>
|
||||
|
||||
<span class="article-categories">
|
||||
<i class="fa fa-table"></i>
|
||||
<ul>
|
||||
<% post.categories.forEach(category => { %>
|
||||
<li>
|
||||
<a href="<%- url_for(category.path) %>" rel="tag"><%= category.name %></a>
|
||||
</li>
|
||||
<% }); %>
|
||||
</ul>
|
||||
</span>
|
||||
|
||||
<% } %>
|
||||
</div>
|
||||
</li>
|
||||
<% }) %>
|
||||
|
|
|
@ -50,6 +50,7 @@
|
|||
|
||||
.article-post-content {
|
||||
padding 15px 0
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
letter-spacing: 1px;
|
||||
|
@ -73,25 +74,26 @@
|
|||
}
|
||||
|
||||
|
||||
.article-post-meta {
|
||||
padding-bottom: 30px;
|
||||
.article-meta {
|
||||
padding-bottom: 20px;
|
||||
border-bottom: 1px solid #f2f2f2;
|
||||
color: #bbbbbb;
|
||||
font-size: 12px;
|
||||
position relative
|
||||
|
||||
.article-date, .article-tags, .article-categories {
|
||||
.article-item {
|
||||
margin-right: 15px;
|
||||
}
|
||||
|
||||
.article-tags, .article-categories {
|
||||
display: inline;
|
||||
|
||||
ul {
|
||||
display: inline;
|
||||
|
||||
li {
|
||||
ul, li {
|
||||
display: inline;
|
||||
}
|
||||
|
||||
li {
|
||||
|
||||
}
|
||||
|
||||
a {
|
||||
|
|
Loading…
Reference in New Issue