Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Automatically Removed Whitespace #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion prod.sample.ini
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ default_locale_name = en
[filter:weberror]
use = egg:WebError#error_catcher
debug = false
;error_log =
;error_log =
;show_exceptions_in_wsgi_errors = true
;smtp_server = localhost
;error_email = [email protected]
Expand Down
6 changes: 3 additions & 3 deletions stormbb/static/css/inuit.css
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ table{
border-collapse:collapse;
border-spacing:0;
}
fieldset,img{
fieldset,img{
border:0;
}
address,caption,cite,dfn,th,var{
Expand Down Expand Up @@ -591,7 +591,7 @@ Unfortunately feedback messages don’t fit the baseline all too well. Perhaps i
padding:10px 10px 10px 36px;
border:1px solid #ccc;
margin:0 0 1.5em 0;

-moz-border-radius:2px;
-webkit-border-radius:2px;
border-radius:2px;
Expand Down Expand Up @@ -952,7 +952,7 @@ body{
margin:0 auto;
}
/*
A list of things you don’t want printing. Add to/subtract from as necessary.
A list of things you don’t want printing. Add to/subtract from as necessary.
*/
#nav,
#footer{
Expand Down
18 changes: 9 additions & 9 deletions stormbb/templates/base.mak
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0" />

<title>${self.title()} - Tempest Forums</title>

<!-- The framework -->
<link rel="stylesheet" href="/static/css/inuit.css" />
<link rel="stylesheet" href="/static/css/breadcrumb.inuit.css" />

<style>
.hidden {
display: none;
Expand All @@ -29,15 +29,15 @@
margin: 0 auto;
}
</style>
</head>
</head>
</head>
<body>
<div class="headbar">This is currently read only. To talk to real people,
<a href="http://convore.com/tempest/">head over to Convore</a>.</div>

<!-- YOU CAN START WORKING IN THIS FILE RIGHT AWAY, JUST EDIT BELOW -->
<div class="grids wrap">

<div id="side" class="grid-4">
<h1><a href="/">Tempest PA</a></h1>
% if USER_ID:
Expand All @@ -53,12 +53,12 @@
% endif
</div>
<div id="page" class="grid-12">

${next.body()}

</div>
</div>

</body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js">
</script>
Expand Down