30 lines
932 B
HTML
30 lines
932 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta property="og:image" content="https://andrewconl.in/assets/images/og-image-template.jpg">
|
|
<title>andrew conlin</title>
|
|
<link href="https://use.fontawesome.com/releases/v6.0.0/css/all.css" rel="stylesheet">
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<link href="/assets/css/default.css" rel="stylesheet">
|
|
{% include style.html a=page.categories.first %}
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container text-start">
|
|
{% include nav.html a=page.categories.first %}
|
|
<div class="col col-md-9">
|
|
<h1 style="font-weight: 500;">
|
|
{{ page.title }}
|
|
</h1>
|
|
{{ content }}
|
|
<br>
|
|
<br>
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html> |