Skip to content

Commit

Permalink
massive move to github pages
Browse files Browse the repository at this point in the history
  • Loading branch information
Steven Van Acker authored and Steven Van Acker committed Apr 16, 2014
1 parent 1b8fb14 commit 3c254a0
Show file tree
Hide file tree
Showing 559 changed files with 3,674 additions and 14,560 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
*~
.DS_Store
*.swp
_site
1 change: 1 addition & 0 deletions CNAME
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
new.overthewire.org
12 changes: 0 additions & 12 deletions FOOTER.shtml

This file was deleted.

59 changes: 0 additions & 59 deletions GLOBALHEADER.shtml

This file was deleted.

Empty file removed LOCALHEADER.shtml
Empty file.
17 changes: 0 additions & 17 deletions Makefile

This file was deleted.

5 changes: 0 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +0,0 @@
Backstage OTW
-------------

Nothing to see here, please kindly move on to
[overthewire.org](http://www.overthewire.org)
1 change: 0 additions & 1 deletion STARTCONTENT.shtml

This file was deleted.

2 changes: 2 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
markdown: kramdown

8 changes: 8 additions & 0 deletions _includes/about.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<div id="sidemenu">
<ul>
{% include menu_item.html link="/about/index.html" name="Contribute" %}
{% include menu_item.html link="/about/wechall.html" name="WeChall&nbsp;Scoreboard" %}
{% include menu_item.html link="/about/us.html" name="About&nbsp;Us" %}
{% include menu_item.html link="/about/contact.html" name="Contact" %}
</ul>
</div>
2 changes: 2 additions & 0 deletions _includes/beginNote.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
<div style='border: solid 1px black; background: #ccffcc; padding: 10px;'>
<h3>{{include.title}}</h3>
File renamed without changes.
31 changes: 31 additions & 0 deletions _includes/games.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<div id="sidemenu">
<ul>
<li><sh>Online</sh></li>
{% include menu_item.html link="/wargames/vortex" name="Vortex" %}
{% include menu_item.html link="/wargames/semtex" name="Semtex" %}
{% include menu_item.html link="/wargames/krypton" name="Krypton" %}
{% include menu_item.html link="/wargames/bandit" name="Bandit" %}
{% include menu_item.html link="/wargames/leviathan" name="Leviathan" %}
{% include menu_item.html link="/wargames/narnia" name="Narnia" %}
{% include menu_item.html link="/wargames/behemoth" name="Behemoth" %}
{% include menu_item.html link="/wargames/utumno" name="Utumno" %}
{% include menu_item.html link="/wargames/maze" name="Maze" %}
{% include menu_item.html link="/wargames/manpage" name="Manpage" %}
{% include menu_item.html link="/wargames/natas" name="Natas" %}
</ul>
<br />

<ul>
<li><sh>Released</sh></li>
{% include menu_item.html link="/wargames/hes2010" name="HES2010" %}
{% include menu_item.html link="/wargames/abraxas" name="Abraxas" %}
{% include menu_item.html link="/wargames/monxla" name="Monxla" %}
</ul>
<br />
<ul>
<li><sh>Currently down</sh></li>
{% include menu_item.html link="/wargames/blacksun" name="Blacksun" %}
{% include menu_item.html link="/wargames/drifter" name="Drifter" %}
{% include menu_item.html link="/wargames/kishi" name="Kishi" %}
</ul>
</div>
14 changes: 14 additions & 0 deletions _includes/menu_item.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{% if include.name == nil %}
{% assign name = include.link | capitalize %}
{% else %}
{% assign name = include.name %}
{% endif %}

{% assign linklen = include.link | size | plus:3 %}
{% assign currprefix = page.url | truncate:linklen | remove:"..." %}

{% if currprefix == include.link %}
<li><a class='selected' href="{{ include.link }}">{{ name }}</a></li>
{% else %}
<li><a href="{{ include.link }}">{{ name}}</a></li>
{% endif %}
5 changes: 5 additions & 0 deletions _includes/news.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<div id="sidemenu">
<ul>
{% include menu_item.html link="/" name="FIXME" %}
</ul>
</div>
9 changes: 9 additions & 0 deletions _includes/showFile.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<div>
{% if include.name == nil %}
{% assign name = include.path %}
{% else %}
{% assign name = include.name %}
{% endif %}
Included file: <a href="{{include.path}}">{{name}}</a>
<script>renderCode("{{include.path}}")</script>
</div>
55 changes: 55 additions & 0 deletions _layouts/default.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
<!DOCTYPE html>
<html>
<head>
<link rel='shortcut icon' href='/img/favicon.ico' />
<link rel="stylesheet" href="/css/style.css" type="text/css" media="screen" />
<link href='http://fonts.googleapis.com/css?family=Inconsolata|Pontano+Sans|Maven+Pro&subset=latin,latin-ext' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="/css/highlightcode.css">
<script src="/js/highlight.min.js"></script>
<script src="/js/otwcrap.js"></script>
<title>{{page.title}}</title>
</head>
<body>
<div id="sitename"><a href="/">OverTheWire</a></div>
<div id="siteslogan">We're hackers, and we are good-looking. We are the 1%.</div>
<div id="topmenu">
<ul>
{% include menu_item.html link="/wargames" name="Wargames" %}
{% include menu_item.html link="/news" name="News" %}
{% include menu_item.html link="/about/wechall.html" name="Wechall&nbsp;Scoring" %}
{% include menu_item.html link="/about" name="About" %}
</ul>
</div>
{% if page.listgames != nil %}
{% include games.md %}
{% endif %}
{% if page.listabout != nil %}
{% include about.md %}
{% endif %}
{% if page.listnews != nil %}
{% include news.md %}
{% endif %}
{% if page.gamename != nil %}
<div id="sidemenu"></div>
<script>renderLevelsMenu("{{page.gamename}}");</script>
{% endif %}
<div id="content">
{% if page.level != nil %}
<div id="title"></div>
<script>renderLevelTitle("{{page.gamename}}", {{page.level}});</script>
{% endif %}
{{ content }}
</div>

<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-2560031-3");
pageTracker._trackPageview();
} catch(err) {}</script>
</body>
</html>

1 change: 0 additions & 1 deletion about/ENDCONTENT.shtml

This file was deleted.

28 changes: 0 additions & 28 deletions about/LOCALHEADER.shtml

This file was deleted.

1 change: 0 additions & 1 deletion about/STARTCONTENT.shtml

This file was deleted.

17 changes: 17 additions & 0 deletions about/contact.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
layout: default
listabout: true
---
Contact Us
==========

If you have a problem, a question, a suggestion, or just want to hang
out with us, you can join [ircs.overthewire.org][] on port 6697 using an
SSL-enabled IRC client, or [irc.overthewire.org][] on port 6667 using a
regular IRC client. You can find us on the \#social channel for general
chat, or on \#wargames for discussions and help regarding the games. If
you don't know [how to use IRC][], use google to find out.

[ircs.overthewire.org]: ircs://ircs.overthewire.org/social
[irc.overthewire.org]: irc://irc.overthewire.org/social
[how to use IRC]: http://www.irchelp.org/irchelp/irctutorial.html
14 changes: 0 additions & 14 deletions about/contact.shtml

This file was deleted.

53 changes: 27 additions & 26 deletions about/contribute.shtml → about/index.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,23 @@
<!--#set var="PageTitle" value="Volunteer" -->
<!--#include virtual="/GLOBALHEADER.shtml" -->
<!--#include virtual="LOCALHEADER.shtml" -->
<!--#include virtual="STARTCONTENT.shtml" -->
---
layout: default
listabout: true
---
Contributing
============

<h1>Contributing</h1>
<p>
If you appreciate our wargames community and would like to contribute, contact us about it!
</p>
If you appreciate our wargames community and would like to contribute,
contact us about it!

<a name="donate"><h2>Donate</h2></a>
<p>
Keeping the servers running costs us several thousands of dollars each year. If it were not for the financial backing of a couple
generous <a href="/about/us.shtml">sponsors</a>, our servers would have disappeared a long time ago.
<b>We gladly accept any donations, even if you have only $1 to donate.</b>
</p>
<p>Donations can be made through PayPal. Please contact us if you want to contribute in another way.</p>
Donate
------

Keeping the servers running costs us several thousands of dollars each
year. If it were not for the financial backing of a couple generous
[sponsors][], our servers would have disappeared a long time ago. **We
gladly accept any donations, even if you have only $1 to donate.**

Donations can be made through PayPal. Please contact us if you want to
contribute in another way.

<p>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
Expand All @@ -25,14 +28,12 @@ generous <a href="/about/us.shtml">sponsors</a>, our servers would have disappea
<img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>
</p>
<p>
We also happily accept donations in various crypto currencies:<br/>
<br>
<a href="http://bitcoin.org"><img width="45px" height="45px" src="../img/bc-logo.png"/></a> Bitcoin: 1JSLymNDWggo6VJErcPfE7fwPdzRfJumNt<br/>
<br/>
<a href="http://dogecoin.com"><img width="45px" height="45px" src="../img/dc-logo.png"/></a> DogeCoin: DSfAoubPUAhKnF3FBqyha8d7XK6x6NTBNm<br/>
<br/>
<a href="https://litecoin.org/"><img width="45px" height="45px" src="../img/lc-logo.png"/></a> Litecoin: LYJD1cuEouA8hVyoJ7pzh4JkXb5EAKad1i
</p>
<!--#include virtual="ENDCONTENT.shtml" -->
<!--#include virtual="/FOOTER.shtml" -->

We also happily accept donations in various crypto currencies:


| ![Bitcoin](/img/bc-logo.png 'Bitcoin') | 1JSLymNDWggo6VJErcPfE7fwPdzRfJumNt |
| ![DogeCoin](/img/dc-logo.png 'Dogecoin') | DSfAoubPUAhKnF3FBqyha8d7XK6x6NTBNm |
| ![Litecoin](/img/lc-logo.png 'Litecoin') | LYJD1cuEouA8hVyoJ7pzh4JkXb5EAKad1i |

[sponsors]: /about/us.html
1 change: 0 additions & 1 deletion about/index.shtml

This file was deleted.

Loading

0 comments on commit 3c254a0

Please sign in to comment.