icp/src/frontend/templates/frontend/attribution.html

59 lines
1.7 KiB
HTML

{% load staticfiles %}
{% include "frontend/header.html" %}
<div class="row">
<h1>Attribution</h1>
<p>In order to ensure a distraction free learning expierence references to work by third parties was ommited where possible.
This page is set up to give credit and proper attribution to artworks and other material used to create the plattform.
</p>
<h2>Platform</h2>
<p>
The platform was initially created as a funded project of the Hamburg Open Online University.
<div style="text-align: ;">
<a id="hoou" href="http://www.hoou.de/"></a><a id="uhh" href="http://www.uni-hamburg.de"></a>
</div>
Please see the project details <a href="https://hps.vi4io.org/research/projects/hamburg/icp">here</a>.
</p>
<h2>Software</h2>
<p>Several open source software projects enable the platform to operate. This section is dedicated to acknowledge the most important.</p>
<ul>
<li>The web application is build using <a href="https://www.djangoproject.com/">Django Web Framework</a>.</li>
<li>The code editor for many exercises with syntax highlight is based on <a href="https://codemirror.net/">CodeMirror</a>.</li>
</ul>
</div>
<hr>
<style type="text/css">
#hoou {
width: 175px;
height: 42px;
background: url('{% static 'misc' %}/hover-hoou.png') no-repeat left top;
background-size: 100% auto;
display: inline-block;
margin-right: 1.5em;
}
#hoou:hover { background-position: 0px 100% }
#uhh {
width: 155px;
height: 52px;
background: url('{% static 'misc' %}/hover-uhh.png') no-repeat left top;
background-size: 100% auto;
display: inline-block;
margin-right: 1.5em;
}
#uhh:hover { background-position: 0px 100% }
</style>
{% include "frontend/footer.html" %}