Created own theme
This commit is contained in:
@@ -1,22 +1,46 @@
|
||||
<head>
|
||||
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
<meta name="HandheldFriendly" content="True">
|
||||
<meta name="MobileOptimized" content="320">
|
||||
<meta charset="utf-8">
|
||||
|
||||
<title>
|
||||
{% if page.title %}
|
||||
{{ page.title }} · {{ site.title }}
|
||||
{% else %}
|
||||
{{ site.title }}
|
||||
{% endif %}
|
||||
</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
|
||||
<script src="{{ "/theme/js/jquery-3.4.1.min.js" | relative_url}}"></script>
|
||||
<script src="{{ "/theme/js/bootstrap-4.4.1.bundle.min.js" | relative_url }}"></script>
|
||||
<!--Stylesheets-->
|
||||
<link rel="stylesheet" href="{{ "/assets/css/bootstrap/bootstrap.min.css" | relative_url }}">
|
||||
<link rel="stylesheet" href="{{ "/assets/css/bootstrap/bootstrap-toc.min.css" | relative_url }}"/>
|
||||
|
||||
<link rel="stylesheet" href="{{ "/theme/css/site.css" | relative_url }}">
|
||||
<link rel="stylesheet" href="{{ "/theme/css/syntax.css" | relative_url }}">
|
||||
{% if page.layout == "layouts/home" %}
|
||||
<link rel="stylesheet" href="{{ "/assets/css/home.css" | relative_url }}"/>
|
||||
{% elsif page.layout == "layouts/page" %}
|
||||
<link rel="stylesheet" href="{{ "/assets/css/page.css" | relative_url }}"/>
|
||||
{% else %}
|
||||
<link rel="stylesheet" href="{{ "/assets/css/default.css" | relative_url }}"/>
|
||||
{% endif %}
|
||||
|
||||
|
||||
</head>
|
||||
<title>
|
||||
{% if page.title %}
|
||||
{{ page.title }} · {{ site.title }}
|
||||
{% else %}
|
||||
{{ site.title }}
|
||||
{% endif %}
|
||||
</title>
|
||||
|
||||
<!--FontAwesome-->
|
||||
<script src="https://kit.fontawesome.com/fb22317d91.js" crossorigin="anonymous"></script>
|
||||
|
||||
<!--Favicons-->
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="{{ "/assets/favicons/apple-touch-icon.png" | relative_url }}">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="{{ "/assets/favicons/favicon-32x32.png" | relative_url }}">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="{{ "/assets/favicons/favicon-16x16.png" | relative_url }}">
|
||||
<link rel="manifest" href="{{ "/assets/favicons/site.webmanifest" | relative_url }}">
|
||||
<link rel="mask-icon" href="{{ "/assets/favicons/safari-pinned-tab.svg" | relative_url }}" color="#5bbad5">
|
||||
<link rel="shortcut icon" href="{{ "/assets/favicons/favicon.ico" | relative_url }}">
|
||||
<meta name="apple-mobile-web-app-title" content="GLaDOS">
|
||||
<meta name="application-name" content="GLaDOS">
|
||||
<meta name="msapplication-TileColor" content="#da532c">
|
||||
<meta name="msapplication-config" content="{{ "/assets/favicons/browserconfig.xml" | relative_url }}">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
|
||||
</head>
|
||||
Reference in New Issue
Block a user