31 lines
1.2 KiB
HTML
31 lines
1.2 KiB
HTML
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||
|
<title>{{ .Title }}</title>
|
||
|
{{ $style := resources.Get "css/basic.scss" }}
|
||
|
{{ $style = $style | toCSS }}
|
||
|
|
||
|
|
||
|
|
||
|
{{ with .Site.Params.description }}<meta name="description" content="{{ . }}">{{ end }}
|
||
|
{{ with .Site.Params.author }}<meta name="author" content="{{ . }}">{{ end }}
|
||
|
<link rel="preconnect" href="https://fonts.gstatic.com">
|
||
|
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,400;0,500;0,700;1,300&display=swap" rel="stylesheet">
|
||
|
<link rel="stylesheet" href="{{ $style.Permalink }}">
|
||
|
|
||
|
{{ with .OutputFormats.Get "RSS" -}}
|
||
|
{{ printf `<link rel="%s" type="%s" href="%s" title="%s">` .Rel .MediaType.Type .RelPermalink $.Site.Title | safeHTML }}
|
||
|
{{- end }}
|
||
|
</head>
|
||
|
|
||
|
<article class="recent-block recent-block--right">
|
||
|
<div>
|
||
|
<a class="article__link" href="{{ .Permalink }}">{{ .Title }}</a>
|
||
|
</div>
|
||
|
<time class="recent-block__time">{{ .Date.Format "02.01.2006 15:04" }}</time>
|
||
|
{{ range .Params.tags }}
|
||
|
<a href="{{ "/tags/" | relLangURL }}{{ . | urlize }}">{{ . }}</a>
|
||
|
{{ end }}
|
||
|
</article>
|