mirror of
				https://github.com/BBaoVanC/bobatheme.git
				synced 2025-11-02 09:57:53 -06:00 
			
		
		
		
	
		
			
				
	
	
		
			37 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<div class="post">
 | 
						|
    <h2 class="post-title">
 | 
						|
        {{ with .Parent.Params.icon }}{{ partial "icon.html" . }}{{ end }}
 | 
						|
        <a href="{{ .Permalink }}">{{ .Title | markdownify }}</a>
 | 
						|
        {{ if .Draft }}{{ partial "icon.html" "write" }}{{ end }}
 | 
						|
    </h2>
 | 
						|
 | 
						|
    <div class="post-metadata">
 | 
						|
        {{ partial "post-meta-item/translations.html" . }}
 | 
						|
 | 
						|
        {{ if ne .Site.Params.readingtime false }}
 | 
						|
        <span class="post-meta-item">
 | 
						|
            {{ partial "icon.html" "clock" }}
 | 
						|
            {{ $readingtime := 0 }}
 | 
						|
            {{ range .Data.Pages }}
 | 
						|
            {{ $readingtime = (add $readingtime .ReadingTime) }}
 | 
						|
            {{ end }}
 | 
						|
            {{ i18n "readingtime" $readingtime }}
 | 
						|
        </span>
 | 
						|
        {{ end }}
 | 
						|
 | 
						|
        {{ partial "post-meta-item/viewsource.html" . }}
 | 
						|
    </div>
 | 
						|
 | 
						|
    <div class="post-description">
 | 
						|
        {{ partial "description-or-summary.html" . }}
 | 
						|
    </div>
 | 
						|
 | 
						|
    <div class="series-pages">
 | 
						|
        <ul>
 | 
						|
            {{ range .Data.Pages.Reverse }}
 | 
						|
            <li>{{ .Render "summary/post" }}</li>
 | 
						|
            {{ end }}
 | 
						|
        </ul>
 | 
						|
    </div>
 | 
						|
</div>
 |