-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c517f54
commit 61354a7
Showing
3 changed files
with
42 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
--- | ||
layout: default | ||
nav_active: for-students | ||
title: Completed Webis Theses | ||
description: Completed Theses of the Webis group | ||
--- | ||
<nav class="uk-container"> | ||
<ul class="uk-breadcrumb"> | ||
<li><a href="../index.html">Webis.de</a></li> | ||
<li><a href="../for-students.html">For Students</a></li> | ||
<li class="uk-disabled"><a href="#">Completed Theses</a></li> | ||
</ul> | ||
</nav> | ||
|
||
<main class="uk-section uk-section-default"> | ||
<div class="uk-container uk-margin-medium"> | ||
<h1>Completed Theses</h1> | ||
<div id="search-control"> | ||
<input type="text" class="uk-input" id="filter-field" placeholder="Type here to filter…"/> | ||
</div> | ||
</div> | ||
|
||
<div class="uk-container uk-margin-medium publications-list"> | ||
{% include bib-theses.html %} | ||
|
||
<div id="filtered-all-message" class="uk-hidden uk-text-muted" aria-hidden="true"> | ||
None of our publications match your filter. | ||
</div> | ||
</div> | ||
</main> | ||
|
||
<script src="https://assets.webis.de/js/filter.js"></script> | ||
<script src="https://assets.webis.de/js/selection.js"></script> | ||
<script> | ||
initWebisPublicationsFiltering(); | ||
</script> | ||
|