alterNERDtive.github.io/_includes/header.html
2019-02-12 12:11:45 -06:00

21 lines
668 B
HTML

{% if site.style == 'dark' %}
{% assign icon_color = "#ffffff" %}
{% else %}
{% assign icon_color = "#24292e" %}
{% endif %}
{% assign content = page.content | strip_newlines %}
{% assign posts_total = site.posts | size %}
{% assign user = site.github.owner %}
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>{{ user.name }}</title>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="{{ "/assets/styles.css" | absolute_url }}" rel="stylesheet" type="text/css">
</head>
<body class="bg-white" {% if site.style == 'dark' %}style="background-color: #2f363d !important"{% endif %}>