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.
23 lines
606 B
23 lines
606 B
<!DOCTYPE html> |
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en-us"> |
|
|
|
<head> |
|
<link href="http://gmpg.org/xfn/11" rel="profile"> |
|
<meta charset="utf-8"> |
|
<title> |
|
{{ if eq .URL "/" }} |
|
{{ .Site.Title }} |
|
{{ else }} |
|
{{ .Title }} ❚ {{ .Site.Title }} |
|
{{ end }} |
|
</title> |
|
{{ block "head" . }}{{ end }} |
|
</head> |
|
|
|
<body lang="en"> |
|
<h1>{{ .Site.Title }}</h1> |
|
<div>{{ .Site.Params.descr | safeHTML }}</div> |
|
|
|
{{ block "main" . }}{{ end }} |
|
</body> |
|
</html>
|
|
|