Files
hugo-theme-minos-custom/layouts/partials/head.html
Andrew Lyu c2de392b51 Fix layouts
2019-01-16 01:10:52 +08:00

21 lines
696 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>{{ .Title }}{{ if ne .Title .Site.Title }} // {{ .Site.Title }}{{ end }}</title>
{{ partial "meta.html" . }}
{{ partial "og.html" . }}
<link href="{{ .RSSLink }}" rel="alternate" type="application/rss+xml" title="{{ .Site.Title }}" />
<link rel="shortcut icon" href="/favicon.png">
<link href="{{ "webfonts/ptserif/main.css" | absURL }}" rel='stylesheet' type='text/css'>
<link href="{{ "webfonts/source-code-pro/main.css" | absURL }}" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="{{ "css/style.css" | absURL }}">
<link href="http://gmpg.org/xfn/11" rel="profile">
{{ .Hugo.Generator }}
</head>