style:调整标签的排列样式。
This commit is contained in:
		@@ -1,35 +1,42 @@
 | 
			
		||||
<% page.posts.sort("date", "desc" ).each(function(post, i) { %>
 | 
			
		||||
<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>
 | 
			
		||||
        </h3>
 | 
			
		||||
        <div class="uk-flex uk-flex-left">
 | 
			
		||||
            <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, {
 | 
			
		||||
                class: { a: 'uk-link-muted' },
 | 
			
		||||
                show_count: false,
 | 
			
		||||
                style: false,
 | 
			
		||||
                separator: ' / '
 | 
			
		||||
            }) %>
 | 
			
		||||
    <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>
 | 
			
		||||
            </h3>
 | 
			
		||||
            <div class="uk-flex uk-flex-left">
 | 
			
		||||
                <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, {
 | 
			
		||||
                            class: { a: 'uk-link-muted' },
 | 
			
		||||
                            show_count: false,
 | 
			
		||||
                            style: false,
 | 
			
		||||
                            separator: ' / '
 | 
			
		||||
                            }) %>
 | 
			
		||||
                    </div>
 | 
			
		||||
                    <% } %>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
        <% if (post.excerpt) { %>
 | 
			
		||||
            <div class="uk-card-body">
 | 
			
		||||
                <%- post.excerpt %>
 | 
			
		||||
            </div>
 | 
			
		||||
            <% } %>
 | 
			
		||||
        </div>
 | 
			
		||||
                <% if (post.tags.length> 0) { %>
 | 
			
		||||
                    <div class="uk-card-footer uk-flex uk-flex-left">
 | 
			
		||||
                        <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 mb-1 <% if (is_tag(tag.name)) { %>uk-label-warning<% } %>">
 | 
			
		||||
                                    <%= tag.name %>
 | 
			
		||||
                                </span>
 | 
			
		||||
                                <% }) %>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                    <% } %>
 | 
			
		||||
    </div>
 | 
			
		||||
    <% if (post.excerpt) { %>
 | 
			
		||||
    <div class="uk-card-body">
 | 
			
		||||
        <%- post.excerpt %>
 | 
			
		||||
    </div>
 | 
			
		||||
    <% } %>
 | 
			
		||||
    <% if (post.tags.length > 0) { %>
 | 
			
		||||
    <div class="uk-card-footer uk-flex uk-flex-left">
 | 
			
		||||
        <span>分类标签:</span>
 | 
			
		||||
        <% post.tags.each(function(tag) { %>
 | 
			
		||||
        <span class="uk-label ml-1 <% if (is_tag(tag.name)) { %>uk-label-warning<% } %>"><%= tag.name %></span>
 | 
			
		||||
        <% }) %>
 | 
			
		||||
    </div>
 | 
			
		||||
    <% } %>
 | 
			
		||||
</div>
 | 
			
		||||
<% }) %>
 | 
			
		||||
    <% }) %>
 | 
			
		||||
		Reference in New Issue
	
	Block a user