blob: a41b26efe91ebc5fa2c2470d836c0274870f19e3 (
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">
{% assign project_name = site.settings.project.name %}
{% unless project_name %}
{% if site.github %}
{% comment %}
What the damn hell? site.github.is_project_page is set to true even
for my root user site (the one with the .github.io suffix).
TODO: remove the following workaround and replace with a simple check
site.github.is_project_page above when this is fixed?
{% endcomment %}
{% capture assumed_user_name %}{{ site.github.owner_name }}.github.io{% endcapture %}
{% if site.github.repository_name != assumed_user_name %}
{% assign project_name = site.github.repository_name %}
{% endif %}
{% endif %}
{% endunless %}
{% assign author_name = site.settings.author.name %}
{% unless author_name %}
{% if site.github %}
{% assign author_name = site.github.owner_name %}
{% endif %}
{% endunless %}
{% assign author_name = author_name | default: 'John Doe' %}
{% if project_name %}
{% capture title %}{{ project_name }} - {{ author_name }}{% endcapture %}
{% else %}
{% capture title %}{{ 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">
{% unless site.settings.navbar.hide or page.navbar.hide %}
<div class="footer-wrapper-collapse">
{% include common/navbar.html %}
</div>
{% endunless %}
<div class="footer-wrapper-expand">
<div class="container">
|