edgware/edgware/templates/main/browse.html
2011-07-10 07:13:22 +05:30

56 lines
1.3 KiB
HTML

{% extends 'main_base.html' %}
{% block title %}
Home
{% endblock %}
{% block extra_head %}
<link rel="stylesheet" href="/static/css/files/browse.css" />
<script type="text/javascript" src="/static/js/browse_publications.js"></script>
{% endblock %}
{% block pageTitle %}
Browse Publications
{% endblock %}
Browse Publications
{% block content %}
<div id="browseWrapper">
<div id="browsePublicationsleft">
<!-- <h5>Recent Publications:</h5> -->
<iframe src="" width="320" height="400" id="iframePreview"></iframe>
<!-- <img src="http://camputer.org/ftp/public/Issue00.jpg"></a> -->
<p>
<a id="articleLink" href="" title="View as Webpage!"></a>
</p>
</div>
<div id="browseArticlesright">
<h5>Published articles by type of Study:</h5>
<p>
<select name="articleThemes" id="articleThemes">
<option value="0">All</option>
{% for t in themes %}
<option value="{{ t.id }}">{{ t.name }}</option>
{% endfor %}
<!--
<option value="Milk">Things That Could be Done</option>
<option value="Cheese">Things that Have Happened</option>
<option value="Bread">Theories of the Possible</option>
<option value="Cow">Things without a Name</option>
<option value="Pig">Etc.</option>
-->
</select>
</p>
<p>
<ul id="articleList">
</ul>
</p>
</div>
</div>
{% endblock %}