softinio.com/layouts/index.html

31 lines
750 B
HTML
Raw Normal View History

2017-03-26 12:39:20 -04:00
<!DOCTYPE html>
2017-12-16 20:23:15 -05:00
<html class="no-js" lang="en-US" prefix="og: https://ogp.me/ns# fb: https://ogp.me/ns/fb#">
2017-03-26 12:39:20 -04:00
<head>
<meta charset="utf-8">
{{ partial "meta.html" . }}
<base href="{{ .Site.BaseURL }}">
<title>{{ .Site.Title }}</title>
<link rel="canonical" href="{{ .Permalink }}">
2017-03-26 12:55:48 -04:00
<link href="{{ .RSSLink }}" rel="alternate" type="application/rss+xml" title="{{ .Site.Title }}" />
2017-03-26 12:39:20 -04:00
{{ partial "head_includes.html" . }}
</head>
<body lang="en">
{{ partial "subheader.html" . }}
<section id="main">
<div>
<h1 id="title">{{.Site.Title}}</h1>
{{ range where .Data.Pages "Type" "post" }}
{{ .Render "summary"}}
{{ end }}
</div>
</section>
<aside id="meta"> </aside>
{{ partial "footer.html" . }}