-
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.
Yes, Bootstrap is a cliche, but I don't trust myself to do better at the moment. Also, kind of surprised that Django had let me get away with TEMPLATE_DIRS being a string.
- Loading branch information
1 parent
20c227f
commit d131f07
Showing
5 changed files
with
37 additions
and
2 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 @@ | ||
Django==1.6.6 | ||
south==0.8.4 | ||
django-bootstrap3==4.11.0 |
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 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,10 @@ | ||
#brand { | ||
font-family: 'Italianno', cursive; | ||
font-size: 60px; | ||
margin-right: 50px; | ||
text-decoration: none; | ||
} | ||
#brand a:link { text-decoration: none; color: #000000; } | ||
#brand a:visited { text-decoration: none; color: #000000; } | ||
#brand a:hover { text-decoration: none; color: #0000DD; } | ||
#brand a:active { text-decoration: none; color: #DD0000; } |
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,11 +1,31 @@ | ||
{% load bootstrap3 %} | ||
|
||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
{% bootstrap_css %} | ||
<link href='http://fonts.googleapis.com/css?family=Italianno' | ||
rel='stylesheet' type='text/css'> | ||
<link href="/static/finetooth.css" rel="stylesheet"> | ||
<title>Finetooth — {% block subtitle %}{% endblock %}</title> | ||
</head> | ||
<body> | ||
<h1><a href="/">Finetooth</a></h1> | ||
|
||
<div class="navbar navbar-default navbar-static-top"> | ||
<div class="container"> | ||
<span id="brand" class="pull-left"><a href="/">Finetooth</a></span> | ||
<ul class="nav navbar-nav"> | ||
<li class="active"><a href="#">Home</a></li> | ||
<li><a href="#TODO">About</a></li> | ||
<li><a href="#TODO">Log in</a></li> | ||
<li><a href="#TODO">Sign up</a></li> | ||
</ul> | ||
</div> | ||
</div> | ||
|
||
<div class="container"> | ||
{% block content %}{% endblock %} | ||
</div> | ||
</body> | ||
|
||
</html> |
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