Browse Source

Change stylesheet and mascot in basic template

pull/40/head
Michael Walker 10 years ago
parent
commit
87cf853bc2
  1. 12
      templates/themes/basic/index.html

12
templates/themes/basic/index.html

@ -2,6 +2,7 @@
<!doctype html> <!doctype html>
<html> <html>
<head> <head>
<link rel="stylesheet" media="screen" href="/stylesheets/style.css"><link rel="stylesheet" type="text/css" id="stylesheet" href="/stylesheets/fauux.css">
<meta charset="utf-8"> <meta charset="utf-8">
<title>{{ settings.title }}</title> <title>{{ settings.title }}</title>
{% if config.meta_keywords %}<meta name="keywords" content="{{ config.meta_keywords }}">{% endif %} {% if config.meta_keywords %}<meta name="keywords" content="{{ config.meta_keywords }}">{% endif %}
@ -12,14 +13,17 @@
{% if config.font_awesome %}<link rel="stylesheet" href="{{ config.root }}{{ config.font_awesome_css }}">{% endif %} {% if config.font_awesome %}<link rel="stylesheet" href="{{ config.root }}{{ config.font_awesome_css }}">{% endif %}
</head> </head>
<body> <body>
{{ boardlist.top }} <div class="topbar">
{{ boardlist.top }}
</div>
<header> <header>
<h1>{{ settings.title }}</h1> <h1>{{ settings.title }}</h1>
<div class="subtitle">{{ settings.subtitle }}</div> <div class="subtitle">{{ settings.subtitle }}</div>
</header> </header>
<center>
<img src="static/lain_is_cute_datass_small.png" alt="mascot"/>
<img src="static/lain_is_cute_datass_small_teal.png" alt="mascot"/>
</center>
<div class="ban"> <div class="ban">
{% if news|count == 0 %} {% if news|count == 0 %}
<p style="text-align:center" class="unimportant">(No news to show.)</p> <p style="text-align:center" class="unimportant">(No news to show.)</p>

Loading…
Cancel
Save