Skip to content

Commit

Permalink
Merge pull request #1 from BlueHuskyStudios/feature/MVP
Browse files Browse the repository at this point in the history
I think it's ready for a 1.0.0
  • Loading branch information
KyNorthstar committed May 16, 2020
2 parents b85d519 + 484d99f commit 2638fcb
Show file tree
Hide file tree
Showing 3 changed files with 74 additions and 0 deletions.
59 changes: 59 additions & 0 deletions header-meta.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
<meta charset="utf-8" />
<meta content='text/html; charset=utf-8' http-equiv='Content-Type' />
<meta http-equiv='X-UA-Compatible' content='IE=edge' />
<meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1.0' />
<title>{% if page.title %}{{ page.title }} – {% endif %}{{ site.name }}</title>
{% if page.title %}
<meta property="og:title" content="{{ page.title }}" />
<meta property="twitter:title" content="{{ page.title }}" />
{% else %}
<meta property="og:title" content="{{ site.name }}" />
<meta property="twitter:title" content="{{ site.name }}" />
{% endif %}

{% if page.excerpt %}
<meta name="description" content="{{ page.excerpt| strip_html | strip }}" />
<meta property="og:description" content="{{ page.excerpt| strip_html | strip }}" />
<meta name="twitter:description" content="{{ page.excerpt| strip_html | strip }}" />
{% else %}
<meta name="description" content="{{ site.description | strip }}">
<meta property="og:description" content="{{ site.description | strip }}" />
<meta name="twitter:description" content="{{ site.description | strip }}" />
{% endif %}
<meta property="og:site_name" content="{{ site.name }}" />
<meta property="twitter:site" content="{{ site.name }}" />
{% if site.social.twitter %}
<meta name="twitter:creator" content="@{{ site.social.twitter }}" /><!-- Tell twitter that this was made by {{ site.author.name }} -->
{% endif %}
<meta property="og:type" content="{% if page.type | default: site.type %}{{ page.type | default: site.type }}{% else %}website{% endif %}" />
<meta property="og:url" content="{{ site.url }}{{ page.url }}" />
<meta name="author" content="{{ site.author.name }}" />
<meta property="profile:first_name" content="{{ site.author.first-name }}" />
<meta property="profile:last_name" content="{{ site.author.last-name }}" />
<meta property="profile:username" content="{{ site.social.default-username }}" />
<meta name="twitter:card" content="summary_large_image" /><!-- Tell twitter that this link can be presented as a large image with a summary -->
<meta name="msapplication-TileImage" content="/images/MS-Tile-Image.png" /><!-- When pinned as a tile for Windows' Start, this is the image -->
<meta property="og:image" content="/images/Social-Preview.png" /><!-- Image for sharing on social networks -->
<meta property="twitter:image" content="/images/Social-Preview.png" />
<meta name="twitter:image:src" content="/images/Social-Preview.png" />
{% if site.theme-color %}
<meta name="msapplication-TileColor" content="{{ site.theme-color }}" /><!-- When pinned as a tile for Windows' Start, this is the tile's BG color -->
<meta name="theme-color" content="{{ site.theme-color }}"/><!-- Color in Chrome address bar -->
<meta name="apple-mobile-web-app-status-bar-style" content="{{ site.theme-color }}" /><!-- Color in Safari status bar -->
{% endif %}
{% if page.date %}
<meta property="article:published_time" content="{{ page.date }}" />
{% endif %}
{% if page.date-modified %}
<meta property="article:modified_time" content="{{ page.date-modified }}" />
{% endif %}

{%- if site.social.twitter %}
<link rel="me" href="https://twitter.com/{{ site.social.twitter }}" />
{%- endif %}
{%- if site.social.microblog %}
<link rel="me" href="https://micro.blog/{{ site.social.microblog }}" />
{%- endif %}
{%- if site.social.mastodon %}
<link rel="me" href="https://{{ site.social.mastodon.instance }}/@{{ site.social.mastodon.username }}" />
{%- endif %}
4 changes: 4 additions & 0 deletions header-scripts.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@

<script src="https://shared.bhstudios.org/_js/jquery-bh-preferred.js">/* jQuery */</script>
<script src="https://scripts.bhstudios.org/assets/v2/general/js/lib/kotlin.js">/* Kotlin/JS for BHStudios General Script */</script>
<script src="https://scripts.bhstudios.org/assets/v2/general/js/BHStudios%20General%20Scripts.js">/* BHStudios General Script */</script>
11 changes: 11 additions & 0 deletions header-stylesheets.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<link rel="stylesheet" type="text/css" id="flex" href="https://stylesheets.bhstudios.org/assets/v2/structure/flex.css" />
<link rel="stylesheet" type="text/css" id="neon-tables" href="https://stylesheets.bhstudios.org/assets/v2/neon/neon-tables.css" />
<link rel="stylesheet" type="text/css" id="stylesheet-print" href="https://stylesheets.bhstudios.org/assets/v2/basics/print.css" />
<link rel="stylesheet" type="text/css" id="framework-stylesheet" href="https://stylesheets.bhstudios.org/assets/v2/neon/neon-renderer.css" />
<link rel="stylesheet" type="text/css" id="theme-stylesheet" href="https://stylesheets.bhstudios.org/assets/v2/neon/neon-water.css" />
<link rel="stylesheet" type="text/css" id="material-icons" href="https://fonts.googleapis.com/icon?family=Material+Icons" />
<link rel="stylesheet" type="text/css" id="google-fonts" href="https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700|Questrial|ZCOOL+QingKe+HuangYou|Oswald:600&amp;subset=chinese-simplified,korean,latin-ext,vietnamese,cyrillic,cyrillic-ext,greek,greek-ext">
<link rel="stylesheet" type="text/css" id="site-styles" href="{{ site.baseurl }}/site.css" />
{%- for stylesheet in page.page-specific-stylesheets %}
<link rel="stylesheet" type="text/css" href="{{ stylesheet }}" />
{%- endfor %}

0 comments on commit 2638fcb

Please sign in to comment.