aboutsummaryrefslogtreecommitdiff
path: root/themes/docsy/assets/vendor/forkawesome/src/doc/_layouts/base.html
diff options
context:
space:
mode:
authorThijs Paelman <thijs.paelman+git@hotmail.be>2023-06-05 23:00:39 +0200
committerThijs Paelman <thijs.paelman+git@hotmail.be>2023-06-05 23:00:39 +0200
commita9b5b225ec579f96b26576f38ee44e288f07a184 (patch)
tree6945a5ce56fef0bf88f620744a225d4ca2977810 /themes/docsy/assets/vendor/forkawesome/src/doc/_layouts/base.html
parentd7f7c4b20cabb32bde00ff0e2fe9685ba041f3ab (diff)
parentf812d271738796f0b589bbf06a5d14178ef60743 (diff)
downloadwebsite-a9b5b225ec579f96b26576f38ee44e288f07a184.tar.gz
website-a9b5b225ec579f96b26576f38ee44e288f07a184.zip
Merge branch 'social-links'
Diffstat (limited to 'themes/docsy/assets/vendor/forkawesome/src/doc/_layouts/base.html')
-rw-r--r--themes/docsy/assets/vendor/forkawesome/src/doc/_layouts/base.html55
1 files changed, 55 insertions, 0 deletions
diff --git a/themes/docsy/assets/vendor/forkawesome/src/doc/_layouts/base.html b/themes/docsy/assets/vendor/forkawesome/src/doc/_layouts/base.html
new file mode 100644
index 0000000..8979c78
--- /dev/null
+++ b/themes/docsy/assets/vendor/forkawesome/src/doc/_layouts/base.html
@@ -0,0 +1,55 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <!-- Basic Page Needs
+ ================================================== -->
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width,initial-scale=1">
+ <meta name="description" content="Fork Awesome, a fork of the iconic font and CSS framework">
+ <meta name="author" content="The Fork Awesome community">
+ <link rel="shortcut icon" href="{{ page.relative_path }}assets/ico/favicon.ico">
+
+ <title>{% if page.title %}{{ page.title }}{% endif %}</title>
+
+ <!-- CSS
+ ================================================== -->
+ <link rel="stylesheet" href="{{ page.relative_path }}assets/css/site.css">
+ <link rel="stylesheet" href="{{ page.relative_path }}assets/css/pygments.css">
+ <link rel="stylesheet" href="{{ page.relative_path }}assets/css/share.min.css">
+ <link rel="stylesheet" href="{{ page.relative_path }}assets/fork-awesome/css/fork-awesome.css">
+
+ <!-- Twitter
+ ================================================== -->
+ <meta name="twitter:title" content="{% if page.title %}{{ page.title }}{% endif %}">
+ <meta name="twitter:card" content="summary_large_image">
+ <meta name="twitter:description" content="Fork Awesome, a fork of the iconic font and CSS toolkit">
+ <meta name="twitter:image" content="https://forkawesome.github.io/Fork-Awesome/assets/images/banner.jpg">
+
+ <!-- FACEBOOK
+ ================================================== -->
+ <meta property="og:url" content="https://forkawesome.github.io/Fork-Awesome/">
+ <meta property="og:title" content="{% if page.title %}{{ page.title }}{% endif %}">
+ <meta name="description" property="og:description" content="Fork Awesome, a fork of the iconic font and CSS toolkit" />
+ <meta property="og:image" content="https://forkawesome.github.io/Fork-Awesome/assets/images/banner.jpg">
+
+ <!--[if lt IE 9]>
+ <script src="{{ page.relative_path }}assets/js/html5shiv.js"></script>
+ <script src="{{ page.relative_path }}assets/js/respond.min.js"></script>
+ <![endif]-->
+
+</head>
+<body class="font-awesome {{ page.view_class }}">
+ <div id="wrap"> <!-- necessary for sticky footer. wrap all content except footer -->
+ {% include navbar.html %}
+
+ {{ content }}
+ </div>
+ {% include footer.html %}
+ <script src="https://ajax.googleapis.com/ajax/libs/jquery/{{ site.jquery.version }}/jquery.min.js"></script>
+ <script src="https://ajax.aspnetcdn.com/ajax/jquery.validate/{{ site.jquery_validate.version }}/jquery.validate.min.js"></script>
+ <script src="https://maxcdn.bootstrapcdn.com/bootstrap/{{ site.bootstrap.version }}/js/bootstrap.min.js"></script>
+ <script src="{{ page.relative_path }}assets/js/site.js"></script>
+ <script src="{{ page.relative_path }}assets/js/share.min.js"></script>
+
+ </body>
+</html>