mirror of
https://github.com/rvtr/ninjacheetah.github.io.git
synced 2025-06-18 11:05:37 -04:00
32 lines
1.3 KiB
HTML
32 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_old.css">
|
|
<link id="pagestyle" rel="stylesheet" type="text/css" href="">
|
|
<link rel="alternate" type="application/atom+xml" href="https://ninjacheetah.github.io/feed.xml">
|
|
<script src="/assets/js/theme.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://ninjacheetah.github.io">
|
|
<meta property="og:url" content="https://ninjacheetah.github.io">
|
|
<meta property="og:site_name" content="NinjaCheetah's Site">
|
|
{% if page.custicon == true %}
|
|
<meta property="og:image" content="{{ page.iconurl }}">
|
|
{% else %}
|
|
<meta property="og:image" content="https://ninjacheetah.github.io/icon.png">
|
|
{% endif %}
|
|
</head>
|
|
<body>
|
|
{% include nav.html %}
|
|
{{ content }}
|
|
</body>
|
|
</html>
|