aboutsummaryrefslogtreecommitdiffstats
path: root/pelican-bootstrap3/templates/includes/banner.html
blob: 637eb38d59d5fef9661b916daedbaebe60dbeb35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<style>
	#banner{
	    background-image:url("{{ SITEURL}}/{{ BANNER }}");
	}
</style>

<div id="banner">
	<div class="container{% if BOOTSTRAP_FLUID %}-fluid{% endif %}">
		<div class="copy">
			<h1>{{ SITENAME }}</h1>
			{% if BANNER_SUBTITLE %}
				<p class="intro">{{ BANNER_SUBTITLE }}</p>
			{% endif %}
		</div>
	</div>
</div>