blob: 81d7cbf658ac1b755b72231159a5f26322d7e6c8 (
plain) (
tree)
|
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
{% if site.settings.project.name %}
{% capture title %}{{ site.settings.project.name }} - {{ site.settings.author.name }}{% endcapture %}
{% else %}
{% capture title %}{{ site.settings.author.name }}{% endcapture %}
{% endif %}
{% if page.url != '/' %}
{% capture title %}{{ page.title }} - {{ title }}{% endcapture %}
{% endif %}
<title>{{ title }}</title>
<link rel="stylesheet" href="{{ '/assets/bootstrap/css/bootstrap.min.css' | relative_url }}">
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
{% include common/mathjax.html %}
<link rel="stylesheet" href="{{ '/assets/css/main.css' | relative_url }}">
{% if page.custom_css %}
{% for css in page.custom_css %}
{% assign abs_check = css | downcase | split: '//' %}
{% if abs_check[0] == 'http:' or abs_check[0] == 'https:' or abs_check[0] == blank %}
{% assign url = css %}
{% else %}
{% assign url = '/assets/css/' | relative_url | append: css %}
{% endif %}
<link rel="stylesheet" href="{{ url }}">
{% endfor %}
{% endif %}
</head>
<body>
<div class="top-level-footer-wrapper">
{% if site.settings.navbar.hide or page.navbar.hide %}
{% else %}
<div class="footer-wrapper-collapse">
{% include common/navbar.html %}
</div>
{% endif %}
<div class="footer-wrapper-expand">
<div class="container">
|