28 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			HTML
		
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			HTML
		
	
	
	
| <article class="summary-classic">
 | |
|   <div class="summary-classic__flex-box">
 | |
|     {{ $params := .Params }}
 | |
|     {{ if $params.featured_image }}
 | |
|     <div class="summary-classic__image-wrapper">
 | |
|       <a href="{{ .Permalink }}">
 | |
|         <img data-src="{{ (print "images/" $params.featured_image) | relURL }}" alt="{{ print $params.featured_image }}" src="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='24pt' height='24pt' viewBox='0 0 24 24' version='1.1'%3E%3Cg id='surface1035795'%3E%3Cpath style=' stroke:none;fill-rule:nonzero;fill:rgb(80%25,80%25,80%25);fill-opacity:1;' d='M 4 4 C 2.90625 4 2 4.90625 2 6 L 2 18 C 2 19.09375 2.90625 20 4 20 L 20 20 C 21.09375 20 22 19.09375 22 18 L 22 6 C 22 4.90625 21.09375 4 20 4 Z M 4 6 L 20 6 L 20 18 L 4 18 Z M 4 6 '/%3E%3C/g%3E%3C/svg%3E%0A" class="lazyload summary-classic__image" />
 | |
|       </a>
 | |
|     </div>
 | |
|     {{ end }}
 | |
|     <div class="summary-classic__content">
 | |
|       <header>
 | |
|         <h5 class="title h5"><a href='{{ .Permalink }}'> {{ .Title }}</a> </h5>
 | |
|         <h6 class="subtitle caption"><span title="{{ i18n "tooltip-written" }}">📅  {{ .Date.Format (i18n "summary-dateformat") }} </span> {{ if .GitInfo }} <span title="{{ i18n "tooltip-modified" }}"> · 📝 {{ .Lastmod.Format (i18n "summary-dateformat") }} </span> {{ end }} <span title="{{ i18n "tooltip-reading-time" }}"> · ☕{{ .ReadingTime }} {{ i18n "reading-time" }} </span></h6>
 | |
|       </header>
 | |
|       <div>
 | |
|         <div class="summary-classic__text p2">
 | |
|           {{ with $params.Description }}
 | |
|           {{ . }}
 | |
|           {{ else }}
 | |
|           {{ .Summary }}
 | |
|           {{ end }}
 | |
|         </div>
 | |
|       </div>
 | |
|     </div>
 | |
|   </div>
 | |
|   <hr />
 | |
| </article> |