mirror of
				https://github.com/BBaoVanC/bobatheme.git
				synced 2025-11-04 02:37:54 -06:00 
			
		
		
		
	- Add vim folds to make organized sections - Rename a lot of classes from post- to page- - Generalize series CSS classes better - Clean up navbar div structure - Remove langpicker and most of multilingual support - many other minor tweaks
		
			
				
	
	
		
			90 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			90 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
{{ define "main" }}
 | 
						|
    <div class="page-title">
 | 
						|
        <h1>
 | 
						|
            {{ .Title | markdownify }}
 | 
						|
            {{ if .Draft }}{{ partial "icon.html" "write" }}{{ end }}
 | 
						|
        </h1>
 | 
						|
    </div>
 | 
						|
 | 
						|
    {{ partial "page-metadata/post-full.html" . }}
 | 
						|
    {{ partial "series-box.html" . }}
 | 
						|
 | 
						|
    {{ if .Params.Toc }}
 | 
						|
        <div class="table-of-contents" aria-label="{{ i18n "aria_table_of_contents" }}">
 | 
						|
            <details>
 | 
						|
                <summary>{{ i18n "table_of_contents" }}</summary>
 | 
						|
                {{ .TableOfContents }}
 | 
						|
            </details>
 | 
						|
        </div>
 | 
						|
        <div class="table-of-contents print">
 | 
						|
            {{ i18n "table_of_contents" }}
 | 
						|
            {{ .TableOfContents }}
 | 
						|
        </div>
 | 
						|
    {{ end }}
 | 
						|
 | 
						|
    {{ with .Resources.GetMatch "feature" }}
 | 
						|
        <div class="post-media">
 | 
						|
            {{ partial "figure.html" (dict "src" .) }}
 | 
						|
        </div>
 | 
						|
    {{ end }}
 | 
						|
 | 
						|
    <article class="post-content">
 | 
						|
        {{ .Content }}
 | 
						|
    </article>
 | 
						|
 | 
						|
    {{ partial "series-box.html" . }}
 | 
						|
 | 
						|
    {{ if or .NextInSection .PrevInSection }}
 | 
						|
        <div class="prevnext">
 | 
						|
            {{ with .NextInSection }}
 | 
						|
                <a class="prev" href="{{ .Permalink }}">
 | 
						|
                    <div class="prev-caption">
 | 
						|
                        ← {{ i18n "newer_post" }}
 | 
						|
                    </div>
 | 
						|
                    <div class="prev-post">
 | 
						|
                        {{ .Title | markdownify }}
 | 
						|
                    </div>
 | 
						|
                </a>
 | 
						|
            {{ else }}
 | 
						|
                <div class="prev"></div>
 | 
						|
            {{ end }}
 | 
						|
 | 
						|
            {{ with .PrevInSection }}
 | 
						|
                <a class="next" href="{{ .Permalink }}">
 | 
						|
                    <div class="next-caption">
 | 
						|
                        {{ i18n "older_post" }} →
 | 
						|
                    </div>
 | 
						|
                    <div class="next-post">
 | 
						|
                        {{ .Title | markdownify }}
 | 
						|
                    </div>
 | 
						|
                </a>
 | 
						|
            {{ else }}
 | 
						|
                <div class="next"></div>
 | 
						|
            {{ end }}
 | 
						|
        </div>
 | 
						|
    {{ end }}
 | 
						|
 | 
						|
    {{ if .Site.Params.shareButtons }}
 | 
						|
        {{ partial "share.html" . }}
 | 
						|
    {{ end }}
 | 
						|
 | 
						|
    {{ if .Params.comments }}
 | 
						|
        <div class="comments">
 | 
						|
            {{ partial "comments.html" . }}
 | 
						|
        </div>
 | 
						|
    {{ end }}
 | 
						|
 | 
						|
    {{ $related := .Site.RegularPages.Related . | first 10 }}
 | 
						|
    {{ with $related }}
 | 
						|
        <div class="related-posts full-width-page-list">
 | 
						|
            <hr>
 | 
						|
            <h1>{{ i18n "related_posts" }}</h1>
 | 
						|
            {{ partial "page-list.html" . }}
 | 
						|
        </div>
 | 
						|
    {{ end }}
 | 
						|
 | 
						|
    {{ if .Site.Params.latestPostsOnContent }}
 | 
						|
        {{ partialCached "latest-posts.html" . }}
 | 
						|
    {{ end }}
 | 
						|
{{ end }}
 |