blog-legacy/themes/bbaovanc/layouts/_default/list.html

46 lines
1.5 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
{{ partial "head.html" . }}
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="/blog/style.css" />
<link rel="icon" type="image/svg+xml" href="/blog/favicon.svg" />
<link rel="alternate icon" href="/blog/favicon.ico" />
<title>Articles - bbaovanc's Blog</title>
<meta name="subject" content="Articles - bbaovanc's Blog" />
<meta name="description" content="This is my personal blog" />
<meta name="url" content="https://bbaovanc.com/blog/" />
<meta name="reply-to" content="contact@bbaovanc.com" />
<meta name="og:type" content="website" />
<meta name="og:title" content="Articles - bbaovanc's Blog" />
<meta name="og:url" content="https://bbaovanc.com/blog/" />
<meta name="og:site_name" content="Articles - bbaovanc's Blog" />
<meta name="og:description" content="This is my personal blog" />
<meta name="og:email" content="contact@bbaovanc.com" />
<meta name="og:image" content="/blog/bbaovanc-1024.png" />
</head>
<body>
{{ partial "header.html" . }}
{{ partial "navbar.html" . }}
<div class="row">
<div class="main">
<h2>Articles</h2>
{{- range first 10 .Data.Pages }}
<h4><a href="{{ .Permalink }}">{{ .Title }}</a></h4>
{{- end }}
<h4><a href="{{ .Site.BaseURL }}">Home</a></h4>
</div>
</div>
</body>
</html>