Private
Public Access
1
0
Files
rowsandall/rowers/templates/brochure.html
2017-10-06 09:28:45 +02:00

26 lines
610 B
HTML

{% extends "base.html" %}
{% block title %}Rowsandall Brochure{% endblock title %}
{% block meta %}
<style>
#container { overflow: auto; -webkit-overflow-scrolling: touch; height: 500px; }
object { width: 900px; height: 5000px }
</style>
{% endblock meta %}
{% block content %}
<div class="grid_12 alpha">
<h2>Read our Brochure</h2>
<div id="container">
<object id="obj" data="/static/brochure WEB.pdf" >
object can't be rendered
</object>
</div>
<!--
<embed src="/static/brochure WEB.pdf" width="960" height="650">
-->
</div>
{% endblock content %}