site_vineetk

Source for vineetk.net website
Log | Files | Refs | LICENSE

index.html (462B)


      1 {{ partial "head.html" . }}
      2 
      3 <main class="index">
      4 	<section class="article-list">
      5 		<div>
      6 			<h1 class="text-center">{{$.Title}}</h1>
      7 
      8 			<nav class="text-center">
      9 				<a href="https://git.vineetk.net/">Git</a>
     10 			</nav>
     11 
     12 			{{ range (where .Site.RegularPages "Section" "blog") }}
     13 			<div class="article">
     14 				<span class="date">{{.Date.Format "2006-01-02"}}
     15 				<a href="{{.Permalink}}">{{.Title}}</a></span>
     16 			</div>
     17 			{{ end }}
     18 		</div>
     19 	</section>
     20 </main>