Skip to content
Permalink
8763a7b3ec
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
63 lines (60 sloc) 4.75 KB
{% extends "base.html" %}
{% load menu_tags %}
{% block title %}{{ request.site.name }}{% endblock %}
{% block breadcrumb %}
{% show_breadcrumb %}
{% endblock %}
{% block content %}
<main class="main">
<div class="container">
<div class="main-content">
<div class="accordion"><a class="accordion__showall" href="#">Show All</a>
{% for serie in allseries %}
<div class="accordion__item"><a class="accordion__title" id="{{ serie }}">
<h2>{{ serie|capfirst }}</h2></a>
<div class="accordion__content">
<section>
{% if serie == 'sources' %}
<p>Each volume of the Sources series typically presents a primary source—relevant for the history and development of knowledge—in facsimile, transcription, or translation. The original sources are complemented by an introduction and by commentaries reflecting original scholarly work. The sources reproduced in this series may be rare books, manuscripts, documents or data that are not readily accessible in libraries and archives.</p>
{% elif serie == 'studies' %}
<p>Each volume of the <em>Studies</em> series is dedicated to a key subject in the history and development of knowledge, bringing together perspectives from different fields and combining source-based empirical research with theoretically guided approaches. The studies are typically working group volumes presenting integrative approaches to problems ranging from the globalization of knowledge to the nature of spatial thinking.</p>
{% elif serie == 'proceedings' %}
<p>Each volume of the Proceedings series presents the results of a scientific meeting on current issues and supports, at the same time, further cooperation on these issues by offering an electronic platform with further resources and the possibility for comments and interactions.</p>
{% elif serie == 'textbooks' %}
<p>Each volume of the Textbooks series presents concise and synthetic information on a wide range of current research topics, both introductory and advanced. They use the new publication channel to offer students affordable access to highlevel scientific and scholarly overviews. The textbooks are prepared and updated by experts in the relevant fields and supplemented by additional online materials.</p>
{% endif %}
</section>
{% if Listofpublications %}
{% for Publication in Listofpublications %}
{% if Publication.Serie == serie %}
<div class="project-teaser">
<div class="project-teaser__image"><img src="/media/{{ Publication.Coversmallright }}" data-object-fit="cover"/></div>
<div class="project-teaser-info">
<div class="project-teaser-info__category">{{ Publication.get_Serie_display }} {{ Publication.Number }}</div>
<h2 class="project-teaser-info__title">{{ Publication.Title|safe }}</h2>
<div class="project-teaser-info__description">{{ Publication.Descriptionshort }}</div>
<div class="project-teaser-info-authors">
{% if Publication.Publicationauthor1 %} <a class="project-teaser-info__author-link" href="/author/{{ Publication.Publicationauthor1number }}.html">{{ Publication.Publicationauthor1 }}</a>{% if Publication.Publicationauthor2 %}, <a class="project-teaser-info__author-link" href="/author/{{ Publication.Publicationauthor2number }}.html">{{ Publication.Publicationauthor2 }}</a>{% if Publication.Publicationauthor3 %}, <a class="project-teaser-info__author-link" href="/author/{{ Publication.Publicationauthor3number }}.html">{{ Publication.Publicationauthor3 }}</a>{% if Publication.Publicationauthor4 %}, <a class="project-teaser-info__author-link" href="/author/{{ Publication.Publicationauthor4number }}.html">{{ Publication.Publicationauthor4 }}</a>{% if Publication.Publicationauthor5 %}, <a class="project-teaser-info__author-link" href="/author/{{ Publication.Publicationauthor5number }}.html">{{ Publication.Publicationauthor5 }}</a>
{% endif %}
{% endif %}
{% endif %}
{% endif %}
{% endif %}
{% if Publication.Publicationauthorsuffix %}
{{ Publication.Publicationauthorsuffix }}
{% endif %}</div>
<div class="project-teaser-info__buttons"><a class="link" href="/{{ Publication.Serie }}/{{ Publication.Number }}/index.html"><span class="link__label">More</span></a>
</div>
</div>
</div>
{% endif %}
{% endfor %}
{% endif %}
</div>
</div>
{% endfor %}
</div>
</div>
</div>
</main>
{% endblock %}