@@ -1 +1 @@ | |||||
__version__ = "0.1" | |||||
__version__ = "0.1.dev0" |
@@ -1,12 +1,17 @@ | |||||
# This is a sample config file for Calefaction. | # This is a sample config file for Calefaction. | ||||
# Copy this to config.yml and modify it to set up your website. | # Copy this to config.yml and modify it to set up your website. | ||||
# You must restart the server after making any changes. | |||||
corp: | corp: | ||||
# Find your corp's ID at, e.g., https://zkillboard.com/corporation/917701062/ | # Find your corp's ID at, e.g., https://zkillboard.com/corporation/917701062/ | ||||
id: 123456789 | id: 123456789 | ||||
# Full corp name (doesn't need to match in-game name exactly, but should) | |||||
# Full corp name (doesn't need to match in-game name exactly, but it should) | |||||
name: My Corp Name Here | name: My Corp Name Here | ||||
# Default stylesheet from static/styles/*.css: | |||||
# one of "amarr", "caldari", "gallente", "minmatar", or add your own | |||||
style: null | |||||
welcome: |- | welcome: |- | ||||
(If you are seeing this message on the public internet, someone forgot to | (If you are seeing this message on the public internet, someone forgot to | ||||
configure their website. Whoops!) | configure their website. Whoops!) | ||||
@@ -36,13 +36,13 @@ a:hover { | |||||
} | } | ||||
main, header, footer { | main, header, footer { | ||||
background-color: rgba(0, 0, 0, 0.8); | |||||
background-color: rgba(0, 0, 0, 0.75); | |||||
border-color: #4A4A4A; | border-color: #4A4A4A; | ||||
} | } | ||||
main { | main { | ||||
margin: 2em auto; | margin: 2em auto; | ||||
padding: 0 1em; | |||||
padding: 0.5em 1.5em; | |||||
border-width: 1px; | border-width: 1px; | ||||
border-style: solid; | border-style: solid; | ||||
} | } | ||||
@@ -95,7 +95,8 @@ header a { | |||||
} | } | ||||
header a:hover { | header a:hover { | ||||
color: #CACACA; | |||||
color: #BABABA; | |||||
text-decoration: none; | |||||
} | } | ||||
header .aligned { | header .aligned { | ||||
@@ -104,7 +105,7 @@ header .aligned { | |||||
#corp-masthead { | #corp-masthead { | ||||
height: 30px; | height: 30px; | ||||
margin-right: 0.5em; | |||||
margin-right: 0.25em; | |||||
} | } | ||||
#login-button { | #login-button { | ||||
@@ -6,7 +6,10 @@ | |||||
<%block name="title">${g.config.get("corp.name") | h}</%block> | <%block name="title">${g.config.get("corp.name") | h}</%block> | ||||
</title> | </title> | ||||
<link rel="stylesheet" type="text/css" href="${url_for('staticv', filename='main.css')}" /> | <link rel="stylesheet" type="text/css" href="${url_for('staticv', filename='main.css')}" /> | ||||
<link rel="stylesheet" type="text/css" href="${url_for('staticv', filename='styles/minmatar.css')}" /> | |||||
% if g.config.get("style"): | |||||
<% stylesheet = "styles/{}.css".format(g.config.get("style")) %> | |||||
<link rel="stylesheet" type="text/css" href="${url_for('staticv', filename=stylesheet)}" /> | |||||
% endif | |||||
% for size in g.eve.image.corp_widths: | % for size in g.eve.image.corp_widths: | ||||
<link rel="icon" type="image/png" sizes="${size}x${size}" href="${g.eve.image.corp(g.config.get('corp.id'), size)}" /> | <link rel="icon" type="image/png" sizes="${size}x${size}" href="${g.eve.image.corp(g.config.get('corp.id'), size)}" /> | ||||
% endfor | % endfor | ||||
@@ -2,7 +2,6 @@ | |||||
<%block name="title"> | <%block name="title"> | ||||
Error – ${g.config.get("corp.name") | h} | Error – ${g.config.get("corp.name") | h} | ||||
</%block> | </%block> | ||||
<%block name="header"/> | |||||
<h1>Error!</h1> | <h1>Error!</h1> | ||||
<p>You may report the following information to the developers:</p> | <p>You may report the following information to the developers:</p> | ||||
<div id="error"> | <div id="error"> | ||||