Files
hugo-theme-minos-custom/layouts/partials/head.html
Shiva Huang 8f366a6e45 Update functions deprecated in Hugo 0.55 (#28)
Following functions are deprecated in Hugo 0.55:

* Page's .RSSLink
* Page's .Hugo
2019-04-21 14:46:30 +08:00

19 lines
685 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="{{ with .OutputFormats.Get "RSS" }}{{ .Permalink }}{{ end }}" 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 }}">
{{ hugo.Generator }}
</head>