SciPost Code Repository

Skip to content
Snippets Groups Projects
Commit 12547687 authored by Jean-Sébastien Caux's avatar Jean-Sébastien Caux
Browse files

Add page for Foundation

parent 5e7aeac3
No related branches found
No related tags found
No related merge requests found
...@@ -121,7 +121,7 @@ ...@@ -121,7 +121,7 @@
<h3>Who is behind SciPost?</h3> <h3>Who is behind SciPost?</h3>
<ul> <ul>
<li>SciPost was founded by <a href="http://staff.fnwi.uva.nl/j.s.caux">J.-S. Caux</a>, Professor of Theoretical Physics at the University of Amsterdam.</li> <li>SciPost was founded by <a href="http://staff.fnwi.uva.nl/j.s.caux">J.-S. Caux</a>, Professor of Theoretical Physics at the University of Amsterdam.</li>
<li>The legal entity behind SciPost is Stichting SciPost, a not-for-profit Foundation established in Amsterdam. Its (non-remunerated) personnel consists in Prof. J.-S. Caux (chairman), Dr J. van Mameren (secretary) and Dr J. van Wezel (treasurer). The portal is run by a team of volunteer officers coordinated by the Foundation.</li> <li>The legal entity behind SciPost is <a href="{% url 'scipost:foundation' %}">Stichting SciPost</a>, a not-for-profit Foundation established in Amsterdam. Its (non-remunerated) personnel consists in Prof. J.-S. Caux (chairman), Dr J. van Mameren (secretary) and Dr J. van Wezel (treasurer). The portal is run by a team of volunteer officers coordinated by the Foundation.</li>
</ul> </ul>
<br/> <br/>
<hr class="hr6"> <hr class="hr6">
......
...@@ -93,7 +93,7 @@ ...@@ -93,7 +93,7 @@
<div class="flex-container"> <div class="flex-container">
<div class="flex-whitebox"> <div class="flex-whitebox">
<h3>The SciPost Foundation</h3> <h3><a href="{% url 'scipost:foundation' %}">The SciPost Foundation</a></h3>
<ul> <ul>
<li>Chairman: Prof. J.-S. Caux</li> <li>Chairman: Prof. J.-S. Caux</li>
<li>Secretary: Dr J. van Mameren</li> <li>Secretary: Dr J. van Mameren</li>
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
<div class="row"> <div class="row">
<div class="col-6"> <div class="col-6">
Copyright &copy; SciPost. Copyright &copy; <a href="{% url 'scipost:foundation' %}">SciPost Foundation</a>.
<br/> <br/>
<a href="mailto:admin@scipost.org">Contact the administrators.</a> <a href="mailto:admin@scipost.org">Contact the administrators.</a>
<br/> <br/>
......
{% extends 'scipost/base.html' %}
{% block pagetitle %}: Foundation {% endblock pagetitle %}
{% load staticfiles %}
{% block bodysup %}
<section>
<div class="row">
<div class="col-6">
<div class="flex-container">
<div class="flex-greybox">
<h1>The SciPost Foundation (Stichting SciPost)</h1>
</div>
</div>
</div>
</div>
<div class="flex-container">
<div class="flex-whitebox">
<h2>The SciPost Foundation</h2>
<p>The SciPost Foundation, Inc. is a nonprofit charitable organization dedicated to developing,
implementing and maintaining innovative forms of electronic scientific communication and publishing.
The SciPost Foundation operates the SciPost.org interactive online portal for the benefit
of the international scientific community and further interested parties.</p>
</div>
<div class="flex-whitebox320">
<h2>Personnel:</h2>
<p>(non-remunerated)</p>
<ul>
<li>Chairman: Prof. J.-S. Caux</li>
<li>Secretary: Dr J. van Mameren</li>
<li>Treasurer: Dr J. van Wezel</li>
</ul>
</div>
<div class="flex-whitebox320">
<h2>Contact details</h2>
<p>Science Park 904</p>
<p>c/o Prof. J.-S. Caux</p>
<p>1098 XH</p>
<p>Amsterdam</p>
<p>The Netherlands</p>
<p>+31(0)20 525 5775</p>
</div>
<div class="flex-whitebox320">
<h2>Registration</h2>
<p>Camber of Commerce nr 65280083.</p>
</div>
<div class="flex-whitebox320">
<h2>Yearly Reports</h2>
<p>(none yet)</p>
</div>
<div class="flex-whitebox320">
<h2>Financial Reports</h2>
<p>(none yet)</p>
</div>
</div>
</section>
{% endblock bodysup %}
...@@ -10,6 +10,7 @@ urlpatterns = [ ...@@ -10,6 +10,7 @@ urlpatterns = [
## Info ## Info
url(r'^about$', TemplateView.as_view(template_name='scipost/about.html'), name='about'), url(r'^about$', TemplateView.as_view(template_name='scipost/about.html'), name='about'),
url(r'^foundation$', TemplateView.as_view(template_name='scipost/foundation.html'), name='foundation'),
url(r'^tour$', TemplateView.as_view(template_name='scipost/quick_tour.html'), name='quick_tour'), url(r'^tour$', TemplateView.as_view(template_name='scipost/quick_tour.html'), name='quick_tour'),
url(r'^FAQ$', TemplateView.as_view(template_name='scipost/FAQ.html'), name='FAQ'), url(r'^FAQ$', TemplateView.as_view(template_name='scipost/FAQ.html'), name='FAQ'),
url(r'^terms_and_conditions$', TemplateView.as_view(template_name='scipost/terms_and_conditions.html'), name='terms_and_conditions'), url(r'^terms_and_conditions$', TemplateView.as_view(template_name='scipost/terms_and_conditions.html'), name='terms_and_conditions'),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment