Making it pretty

This commit is contained in:
Raynaldo Rivera
2014-10-05 18:34:02 -07:00
parent a021141b47
commit b748c223c8
25 changed files with 231 additions and 142 deletions

View File

@@ -1,15 +1,52 @@
{% extends "public/base.html" %}
{% load staticfiles %}
<style>
body {
background: url('{% static 'img/index_bg.jpg' %}') no-repeat scroll;
background-size: 100% 100%;
}
{% block title %}Alliance Auth{% endblock %}
div {
height: 200px;
width: 400px;
{% block page_title %}Something something here{% endblock page_title %}
position: fixed;
top: 60%;
left: 50%;
margin-top: -100px;
margin-left: -200px;
}
{% block content %}
<div class="col-sm-9 col-sm-offset-3 col-md-10 col-md-offset-2 main">
</style>
<h1 class="page-header">Dashboard</h1>
<div class="container">
<p>WAT</p>
</div>
</div>
{% endblock content %}
<html>
<head lang="en">
<meta charset="UTF-8">
<title>The 99 Percent Eve Alliance</title>
</head>
<body>
<div id="content">
<p style="text-align:center">
<a href="{% url 'auth_dashboard' %}">
<img src="{% static 'img/index_images/auth.png' %}" border="0">
</a>
</p>
<p style="text-align:center">
<a href="/forums/">
<img src="{% static 'img/index_images/forums.png' %}" border="0">
</a>
</p>
<p style="text-align:center">
<a href="/killboard/">
<img src="{% static 'img/index_images/killboard.png' %}" border="0">
</a>
</p>
<p style="text-align:center">
<a href="https://youtube.com/">
<img src="{% static 'img/index_images/media.png' %}" border="0">
</a>
</p>
</div>
</body>
</html>