forked from gnulinuxindia/website
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
468 B
16 lines
468 B
{{ partial "header.html" . }}
|
|
|
|
<img src="/images/tux_with_india_flag.png" style="max-width:15%;min-width:40px;float:right;" alt="Picture of Tux Holding the Indian flag" />
|
|
{{ .Content }}
|
|
|
|
<ul>
|
|
{{ $pages := .Site.RegularPages }}
|
|
{{ range (where $pages "Section" "!=" "") }}
|
|
<li>
|
|
<span class="date">{{ .Date.Format "2006/01/02" }}</span>
|
|
<a href="{{ .RelPermalink }}">{{ .Title | markdownify }}</a>
|
|
</li>
|
|
{{ end }}
|
|
</ul>
|
|
|
|
{{ partial "footer.html" . }}
|
|
|