Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

base_place #19

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 14 additions & 8 deletions ebpub/ebpub/templates/base_place.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,13 @@

<!-- begin block content -->
{% block content %}
<div id="nav-location">
<div id="content" class="row">

<!-- begin block place_content -->
{% block place_content %}{% endblock %}
<!-- end block place_content -->

<div id="nav-location" class="six col">
<!-- begin block map -->
{% block map %}
<div id="mapwrapper">
Expand All @@ -31,11 +37,13 @@

<!-- block subscribe_links -->
{% block subscribe_links %}
<div class="subscribe-links">
<p>Stay up to date:
<a href="{{ place.url }}feeds/">Custom RSS feeds</a>
<div class="row">
<div class="six col subscribe-links">
<a href="{{ place.url }}feeds/">Custom RSS feeds</a>
</div>
<div class="six col subscribe-links">
{% if alerts_installed %}<a href="{{ place.alert_url }}">E-mail alerts</a>{% endif %}
</p>
</div>
</div>
{% endblock subscribe_links %}
<!-- end block subscribe_links -->
Expand All @@ -56,7 +64,5 @@ <h2>Nearby locations</h2>
<!-- endblock nearby_locations -->

</div><!--/ #nav-location -->
<!-- begin block place_content -->
{% block place_content %}{% endblock %}
<!-- end block place_content -->
</div>
{% endblock content %}