mirror of
https://github.com/rvtr/rmc_website.git
synced 2025-10-31 13:31:21 -04:00
31 lines
1.3 KiB
HTML
31 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>{{ page.title }} | {{ site.title }}</title>
|
|
<link rel="icon" type="image/png" href="/icon.png"/>
|
|
<link rel="stylesheet" type="text/css" href="/assets/css/style.css">
|
|
<link rel="alternate" type="application/atom+xml" href="https://ncxprogramming.com/feed.xml">
|
|
<script src="/assets/bootstrap/js/bootstrap.bundle.js"></script>
|
|
{% if page.title == "Home" %}
|
|
<meta property="og:title" content="Welcome">
|
|
{% else %}
|
|
<meta property="og:title" content="{{ page.title }}">
|
|
{% endif %}
|
|
<meta property="og:locale" content="en_US">
|
|
<meta name="description" content="{{ page.title }} | {{ site.title }}">
|
|
<meta property="og:description" content="{{ page.title }} | {{ site.title }}">
|
|
<link rel="canonical" href="https://ncxprogramming.com">
|
|
<meta property="og:url" content="https://ncxprogramming.com">
|
|
<meta property="og:site_name" content="NCX Programming">
|
|
{% if page.custicon == true %}
|
|
<meta property="og:image" content="{{ page.iconurl }}">
|
|
{% else %}
|
|
<meta property="og:image" content="https://ncxprogramming.com/icon.png">
|
|
{% endif %}
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
</head>
|
|
<div id="content-wrap" style="padding-bottom: 2.5rem;">
|
|
{{ content }}
|
|
</div>
|
|
</html>
|