diff options
Diffstat (limited to 'pelican-bootstrap3/templates/includes/banner.html')
-rw-r--r-- | pelican-bootstrap3/templates/includes/banner.html | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/pelican-bootstrap3/templates/includes/banner.html b/pelican-bootstrap3/templates/includes/banner.html new file mode 100644 index 0000000..637eb38 --- /dev/null +++ b/pelican-bootstrap3/templates/includes/banner.html @@ -0,0 +1,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>
\ No newline at end of file |