blob: 3e6ccaae06b74ecad1422aead69113b9c6690759 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
{{ if $.Params.noindex }}
<meta name="robots" content="noindex">
{{ end }}
<title>{{$.Title}}</title>
<link rel="alternate" type="application/rss+xml" title="RSS" href="https://vineetk.net/blog/index.xml">
<link rel="icon" type="image/png" href="/AT_terminus.png">
{{ $style := resources.Get "main.scss" | css.Sass | resources.Fingerprint }}
<link rel="stylesheet" href="{{ $style.RelPermalink }}">
</head>
|