Private
Public Access
1
0
Files
rowsandall/rowers/templates/brochure.html
2018-10-11 12:38:54 +02:00

27 lines
603 B
HTML

{% extends "newbase.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 main %}
<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">
-->
{% endblock %}
{% block sidebar %}
{% include 'menu_help.html' %}
{% endblock %}