27 lines
603 B
HTML
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 %}
|