forked from OverTheWireOrg/OverTheWire-website
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Steven Van Acker
authored and
Steven Van Acker
committed
Apr 16, 2014
1 parent
1b8fb14
commit 3c254a0
Showing
559 changed files
with
3,674 additions
and
14,560 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
*~ | ||
.DS_Store | ||
*.swp | ||
_site |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
new.overthewire.org |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
markdown: kramdown | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 Scoreboard" %} | ||
{% include menu_item.html link="/about/us.html" name="About Us" %} | ||
{% include menu_item.html link="/about/contact.html" name="Contact" %} | ||
</ul> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 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> | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.