Your IP : 216.73.216.40


Current Path : /var/www/html/kpsingh/website/templates/
Upload File :
Current File : /var/www/html/kpsingh/website/templates/publications.html

{% extends "base.html" %}
{% load staticfiles %}
{% block title%}Publications{% endblock %}
{% block head %}
	Publications
	<link rel="stylesheet" type="text/css" href=" {% static 'css/publications.css'%}">
{% endblock%}
{% block content %}
	{% for yr in yrs %}
		<h3>{{yr}}</h3>
		{% for publi in publis %}
		{% if publi.year == yr%}
		<div id = "pubs"><p>{{publi.pub}}</p></div>
		{% endif %}
		{% endfor %}
	{% endfor %}
{% endblock%}