Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander01998 committed Jun 11, 2017
0 parents commit 483b1d4
Show file tree
Hide file tree
Showing 21 changed files with 48,540 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/_site
.jekyll-metadata
6 changes: 6 additions & 0 deletions 404.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
title: Error 404 (not found)
description: This page does not exist.
permalink: /404.html
---
{% include title.html l1 = page.title l2 = page.description %}
1 change: 1 addition & 0 deletions CNAME
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
bedfix.wurstclient.net
14 changes: 14 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
exclude:
- start.bat

title: WurstClient.net

timezone: Europe/Berlin

defaults:
- scope:
path: ""
type: pages
values:
layout: default
author: Alexander01998
9 changes: 9 additions & 0 deletions _includes/analytics.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-52838431-1', 'auto');
ga('require', 'linkid', 'linkid.js');
ga('send', 'pageview');
</script>
11 changes: 11 additions & 0 deletions _includes/footer.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<footer class="align-center bg-grayDarker fg-grayLighter text-small padding10 no-padding-left no-padding-right">
<div class="container">
Copyright &#169; 2017 | Wurst-Imperium | All rights reserved.
{% assign repo = "https://github.com/Wurst-Imperium/BedFix.WurstClient.net" %}
<ul class="inline-list no-margin">
<li><a href="{{ repo }}/edit/gh-pages/{{ page.path }}" target="_blank" class="fg-grayLight">Edit Page</a></li>
<li><a href="{{ repo }}/blob/gh-pages/{{ page.path }}" target="_blank" class="fg-grayLight">View Source</a></li>
<li><a href="https://www.wurstclient.net/contact/" target="_blank" class="fg-grayLight">Contact</a></li>
</ul>
</div>
</footer>
7 changes: 7 additions & 0 deletions _includes/header.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<nav class="app-bar darcula" data-role="appbar">
<div class="container">
<a class="app-bar-element branding" href="/">
<img src="https://cloud.githubusercontent.com/assets/10100202/19618025/d7aeb13a-983f-11e6-9c15-c4db572b5b18.png" alt="Wurst Client" style="height: 2rem;">
</a>
</div>
</nav>
25 changes: 25 additions & 0 deletions _includes/share-buttons.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{% assign share-title = page.title | cgi_escape %}
{% assign share-url = "https://www.wurstclient.net" | append: page.url | remove: "index.html" | uri_escape %}
<nav class="tile-container">
<a href="https://twitter.com/intent/tweet?text={{ share-title }}&amp;url={{ share-url }}&amp;via=Wurst_Imperium" target="_blank">
<div class="tile-small bg-cyan fg-white">
<div class="tile-content iconic">
<span class="icon mif-twitter"></span>
</div>
</div>
</a>
<a href="https://plus.google.com/share?url={{ share-url }}" target="_blank">
<div class="tile-small bg-red fg-white">
<div class="tile-content iconic">
<span class="icon mif-google-plus"></span>
</div>
</div>
</a>
<a href="https://www.facebook.com/sharer/sharer.php?u={{ share-url }}" target="_blank">
<div class="tile-small bg-darkBlue fg-white">
<div class="tile-content iconic">
<span class="icon mif-facebook"></span>
</div>
</div>
</a>
</nav>
11 changes: 11 additions & 0 deletions _includes/title.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<header class="bg-gray fg-white">
<div class="container padding40 no-padding-left no-padding-right">
<h1 class="align-center text-shadow">
{{ include.l1 }}
{% if include.l2 %}
<br>
<small class="fg-grayLighter">{{ include.l2 }}</small>
{% endif %}
</h1>
</div>
</header>
53 changes: 53 additions & 0 deletions _layouts/default.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
---
---
{% if page.title %}
{% capture page_title %}{{ page.title }} - {{ site.title }}{% endcapture %}
{% else %}
{% assign page_title = "ERROR: This page has no title!" %}
{% endif %}

{% if page.description %}
{% assign page_description = page.description %}
{% else %}
{% capture page_description %}{{ page.content | strip_html | strip_newlines | strip | replace: " ", " " | replace: " ", " " | replace: " ", " " | truncate: 160 }}{% endcapture %}
{% endif %}

{% if page.image %}
{% assign page_image = page.image %}
{% else %}
{% assign page_image = "https://user-images.githubusercontent.com/10100202/27012704-8f856ef6-4ed5-11e7-9734-7edb098f1e37.jpg" %}
{% endif %}

<!DOCTYPE html>
<html lang="en">
<head>

<meta charset="utf-8">
<link rel="shortcut icon" href="/favicon.ico">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">

<title>{{ page_title }}</title>
<meta name="description" content="{{ page_description }}">

<link href="/css/wi.css" rel="stylesheet">

<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@Wurst_Imperium">
<meta name="twitter:title" content="{{ page_title }}">
<meta name="twitter:description" content="{{ page_description }}">
<meta name="twitter:image" content="{{ page_image }}">

{% include analytics.html %}

</head>
<body>

{% include header.html %}
{{ content }}
{% include footer.html %}

<script src="/js/wi.js"></script>

</body>
</html>
Loading

0 comments on commit 483b1d4

Please sign in to comment.