Skip to content

Commit

Permalink
transform the website into jekyll
Browse files Browse the repository at this point in the history
  • Loading branch information
Chew committed Aug 16, 2017
1 parent 7a2deaf commit d8f8cb3
Show file tree
Hide file tree
Showing 9 changed files with 120 additions and 115 deletions.
12 changes: 12 additions & 0 deletions _config.yml
@@ -0,0 +1,12 @@
---
# Title The Generator
title: That Really Blanks my Blank Generator

# Use this for an analogy, used for update page. EX: What is TRBMB?
shortname: TRBMB

# Who made the generator?
creator: Chewsterchew

# Repo URL: THIS MUST BE Name/Repo. Ex: Chewsterchew/TRBMB-Gen
repourl: Chewsterchew/TRBMB-Gen
39 changes: 39 additions & 0 deletions _layouts/info.html
@@ -0,0 +1,39 @@
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ page.title }}</title>
<link href='https://fonts.googleapis.com/css?family=Inconsolata' rel='stylesheet' type='text/css'>
<script src="main.js"></script>
<link rel="stylesheet" href="style.css">
<html prefix="og: http://ogp.me/ns#">
<meta name="description" content="{{ page.title }}" >
<meta property="og:title" content="{{ page.title }}" />
<meta property="og:type" content="website" />
<meta property="og:url" content="{{ site.url }}" />
<meta property="og:description" content="{{ page.title }}" />
<meta property="og:locale" content="en_US" />
<meta property="og:site_name" content="Chewsterchew" />
</head>

<body>
<div id="wrapper">
<header>
<h1>{{ page.title }}</h1>
</header>
<p>{{ content }}</p>
</div>


<footer>
Created By Chewsterchew</br>
<a href="what">What is TRBMB?</a>
<a href="updatelog">Update Log</a>
<a href="http://ctt.ec/2Bofm">Tweet Us!</a>
<a href="http://twitter.com/TRBMBPhraseGen">Twitter Bot</a><br/>
<a class="github-button" href="https://github.com/Chewsterchew/TRBMB-Gen" data-icon="octicon-star" data-count-href="/Chewsterchew/TRBMB-Gen/stargazers" data-count-api="/repos/Chewsterchew/TRBMB-Gen#stargazers_count" data-count-aria-label="# stargazers on GitHub" aria-label="Star this on GitHub">Star</a>

</footer>
</body>
</html>
47 changes: 47 additions & 0 deletions _layouts/main.html
@@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href='https://fonts.googleapis.com/css?family=Inconsolata' rel='stylesheet' type='text/css'>
<script src="changemessage.js"></script>
<script src="words.js"></script>
<link rel="stylesheet" href="style.css">
<html prefix="og: http://ogp.me/ns#">
<script async defer src="https://buttons.github.io/buttons.js"></script>
<title>{{ site.title }}</title>
<meta name="description" content="{{ site.title }}" >
<meta property="og:title" content="{{ site.title }}" />
<meta property="og:type" content="website" />
<meta property="og:url" content="{{ site.url }}" />
<meta property="og:description" content="{{ site.title }}" />
<meta property="og:locale" content="en_US" />
<meta property="og:site_name" content="{{ site.creator }}" />
</head>

<body>
<div id="wrapper">
<header>
<h1>{{ site.title }}</h1>
</header>

<button id="startBttn" onclick="changeMessage()">Generate!</button>

<div id="trbmbline">
<span id="0line" class="line"></span><i>
<span id="1line" class="line"></i></span>
<span id="2line" class="line"></span><i>
<span id="3line" class="line"></i></span>
</div>

<footer>
Created By {{ site.creator }}</br>
<a href="what">What is {{ site.shortname }}?</a>
<a href="updatelog">Update Log</a>
<a href="http://ctt.ec/2Bofm">Tweet Us!</a>
<a href="http://twitter.com/TRBMBPhraseGen">Twitter Bot</a><br/>
<a class="github-button" href="https://github.com/{{ site.repourl }}" data-icon="octicon-star" data-count-href="/{{ site.repourl }}/stargazers" data-count-api="/repos/{{ site.repourl }}#stargazers_count" data-count-aria-label="# stargazers on GitHub" aria-label="Star this on GitHub">Star</a>
</footer>
</div>
</body>
</html>
48 changes: 0 additions & 48 deletions index.html

This file was deleted.

5 changes: 5 additions & 0 deletions index.md
@@ -0,0 +1,5 @@
---
layout: main
title: That Really Blanks my Blank Generator!
---
<!-- Nothing goes here. it's all in the main.html file :D -->
38 changes: 0 additions & 38 deletions updatelog.html

This file was deleted.

12 changes: 12 additions & 0 deletions updatelog.md
@@ -0,0 +1,12 @@
---
layout: info
title: Update Log
---

## I may not keep this updated, but I will put big news here. If you want quick commits, check out [here](https://github.com/Chewsterchew/TRBMB-Gen/commits/master)

Feb 24th, 2017 - Improvements. New URL: http://trbmb.chew.pw. Removed disc link from what.<br/>
Feb 10th, 2017 - Multiple improvements. New URL. Removed beta site (temp)<br/>
Nov 28th, 2016 - Fixed duplicate words and numerous spelling errors.<br/>
Sept 25th, 2016 - Tripled the word count, more random more fun!<br/>
Sept 24th, 2016 - Site Created
29 changes: 0 additions & 29 deletions what.html

This file was deleted.

5 changes: 5 additions & 0 deletions what.md
@@ -0,0 +1,5 @@
---
layout: info
title: What is this Generator?
---
This is a fun little script I made based off of Jacksfilms's YIAY Questions. [Check it out here](https://www.youtube.com/watch?v=C7fS3RsFuUE).<br/> One day me and my friends decided to come up with a ton of ideas for these, so I decided to make a generator for them based off of it!<br/> If you want to suggest some words, [add an issue to the GitHub repo](http://github.com/Chewsterchew/TRBMB-Gen)

0 comments on commit d8f8cb3

Please sign in to comment.