style:调整标签的排列样式。
This commit is contained in:
parent
98bfa267a3
commit
a52efc148f
|
@ -2,10 +2,13 @@
|
|||
<div class="uk-card uk-card-default uk-card-small uk-width-1-1 mb-2">
|
||||
<div class="uk-card-header">
|
||||
<h3 class="uk-card-title">
|
||||
<a href="/<%= post.path %>"><%= post.title %></a>
|
||||
<a href="/<%= post.path %>">
|
||||
<%= post.title %>
|
||||
</a>
|
||||
</h3>
|
||||
<div class="uk-flex uk-flex-left">
|
||||
<div class="uk-text-meta mr-1">最后更新:<%= date(post.date, "YYYY-MM-DD HH:mm") %></div>
|
||||
<div class="uk-text-meta mr-1">最后更新:<%= date(post.date, "YYYY-MM-DD HH:mm" ) %>
|
||||
</div>
|
||||
<% if (post.categories.length> 0) { %>
|
||||
<div class="uk-text-meta">知识分类:
|
||||
<%- list_categories(post.categories, {
|
||||
|
@ -25,11 +28,15 @@
|
|||
<% } %>
|
||||
<% if (post.tags.length> 0) { %>
|
||||
<div class="uk-card-footer uk-flex uk-flex-left">
|
||||
<span>分类标签:</span>
|
||||
<div class="tag-title">分类标签:</div>
|
||||
<div class="uk-flex uk-flex-left uk-flex-wrap uk-flex-1">
|
||||
<% post.tags.each(function(tag) { %>
|
||||
<span class="uk-label ml-1 <% if (is_tag(tag.name)) { %>uk-label-warning<% } %>"><%= tag.name %></span>
|
||||
<span class="uk-label ml-1 mb-1 <% if (is_tag(tag.name)) { %>uk-label-warning<% } %>">
|
||||
<%= tag.name %>
|
||||
</span>
|
||||
<% }) %>
|
||||
</div>
|
||||
</div>
|
||||
<% } %>
|
||||
</div>
|
||||
<% }) %>
|
|
@ -4,10 +4,13 @@
|
|||
<div class="uk-card-header">
|
||||
<h3 class="uk-card-title uk-flex uk-flex-left uk-flex-middle">
|
||||
<a href="javascript:history.go(-1)" uk-icon="icon: chevron-left" uk-tooltip="后退到上一个页面"></a>
|
||||
<span class="ml-1"><%= page.title %></span>
|
||||
<span class="ml-1">
|
||||
<%= page.title %>
|
||||
</span>
|
||||
</h3>
|
||||
<div class="uk-flex uk-flex-left">
|
||||
<div class="uk-text-meta mr-1">最后更新:<%= date(page.date, "YYYY-MM-DD HH:mm") %></div>
|
||||
<div class="uk-text-meta mr-1">最后更新:<%= date(page.date, "YYYY-MM-DD HH:mm" ) %>
|
||||
</div>
|
||||
<% if (page.categories.length> 0) { %>
|
||||
<div class="uk-text-meta">知识分类:
|
||||
<%- list_categories(page.categories, {
|
||||
|
@ -25,11 +28,15 @@
|
|||
</article>
|
||||
<% if (page.tags.length> 0) { %>
|
||||
<div class="uk-card-footer uk-flex uk-flex-left">
|
||||
<span>分类标签:</span>
|
||||
<div class="tag-title">分类标签:</div>
|
||||
<div class="uk-flex uk-flex-left uk-flex-wrap uk-flex-1 tag-host">
|
||||
<% page.tags.each(function(tag) { %>
|
||||
<span class="uk-label ml-1"><%= tag.name %></span>
|
||||
<span class="uk-label ml-1 mb-1">
|
||||
<%= tag.name %>
|
||||
</span>
|
||||
<% }) %>
|
||||
</div>
|
||||
</div>
|
||||
<% } %>
|
||||
</div>
|
||||
</section>
|
||||
|
|
|
@ -23,6 +23,9 @@ footer {
|
|||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
.tag-title {
|
||||
min-width: 100px;
|
||||
}
|
||||
.category-list, .category-list-child {
|
||||
padding-left: 8px;
|
||||
list-style-position: inside;
|
||||
|
|
Loading…
Reference in New Issue
Block a user