fill out the web page side of things a bit

This commit is contained in:
Gered 2014-03-30 05:18:27 -04:00
parent 894f0926ad
commit 993304d7f8
3 changed files with 75 additions and 2 deletions

View file

@ -1,5 +1,16 @@
html, body {
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
height: 100%;
padding-top: 40px;
}
#logo {
padding-top: 50px;
padding-bottom: 50px;
}
.asciiart {
margin: 0px auto;
width: 340px;
font-family: Monaco, Menlo, Consolas, 'Courier New', monospace;
white-space: pre;
}

View file

@ -20,6 +20,18 @@
</head>
<body>
<div id="logo">
<div class="asciiart">
_ _ ____ ____ ___ ___
| |_ ___ / \ / ___| / ___|_ _|_ _|
| __/ _ \ / _ \ \___ \| | | | | |
| |_ (_) | / ___ \ ___) | |___ | | | |
\__\___/ /_/ \_\____/ \____|___|___|
REST API for your ASCII needs
</div>
</div>
<div class="container">
{% block content %}
{% endblock %}

View file

@ -1,5 +1,55 @@
{% extends "base.html" %}
{% block content %}
<h1>Hello, world!</h1>
<div class="panel-group" id="toolsContainer">
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" data-target="#art" href="#art">
ASCII Art
</a>
</h4>
</div>
<div id="art" class="panel-collapse collapse">
<div class="panel-body">
Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS.
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" data-target="#text" href="#text">
Text &nbsp; &ndash;&gt; &nbsp; ASCII
</a>
</h4>
</div>
<div id="text" class="panel-collapse collapse">
<div class="panel-body">
Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS.
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" data-target="#images" href="#images">
Images &nbsp; &ndash;&gt; &nbsp; ASCII
</a>
</h4>
</div>
<div id="images" class="panel-collapse collapse">
<div class="panel-body">
Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS.
</div>
</div>
</div>
</div>
{% endblock %}