blob: 0ba7aaf7bd7e37e48907a7ee498670381ba2ce93 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
{% extends 'base.html' %}
{% load staticfiles %}
{% load url from future %}
{# index page for skaschool #}
{% block pagetitle %}首页{% endblock %}
{% block css_extra %}
<link href="{% static 'css/index.css' %}" rel="stylesheet">
{% endblock %}
{% block content %}
{# title and main info #}
<div class="container">
<h1>第二届 中国SKA暑期学校</h1>
<h1>暨 中国-新西兰联合SKA暑期学校</h1>
<h2 class="smallcaps">China-New Zealand Joint SKA Summer School</h2>
<br>
<p class="lead">
上海,2014,6月28日-7月5日 <br>
June 28 - July 05, 2014, Shanghai
</p>
<br>
<p>
<a href="{% url 'introduction' %}" class="btn btn-outline-inverse btn-lg">了解更多</a>
{% if not user.is_authenticated %}
<a href="{% url 'registration_register' %}" class="btn btn-outline-inverse btn-lg">注册参加</a>
{% endif %}
</p>
</div>
{% endblock %} {# content #}
{% block footer %}
{# display latest important notice #}
{% if important_notice %}
<div class="container">
<div class="alert alert-info alert-dismissable">
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
{# notice #}
<p><strong><a href="{% url 'list_notice' %}" class="alert-link">[通知] {{ important_notice.title }}</a></strong></p>
<p>{{ important_notice.contents }}</p>
</div>
</div>
{% endif %}
<footer class="container" role="contentinfo">
{# links #}
<ul class="masthead-links sponsors">
<li>Sponsors:</li>
<li><a href="http://www.most.gov.cn/" target="_blank">科学技术部</a></li>
<li><a href="http://www.nsfc.gov.cn/" target="_blank">国家自然科学基金委员会</a></li>
<li><a href="http://www.cas.cn/" target="_blank">中国科学院</a></li>
<li><a href="http://www.sjtu.edu.cn/" target="_blank">上海交通大学</a></li>
<li><a href="http://inpac.physics.sjtu.edu.cn/" target="_blank">上海市粒子物理宇宙学重点实验室</a></li>
<li><a href="http://www.skatelescope.org/" target="_blank">SKA Orgnization</a></li>
</ul>
<ul class="masthead-links friends">
<li>Links:</li>
<li><a href="http://www.sjtu.edu.cn/" target="_blank">上海交通大学</a></li>
<li><a href="http://www.physics.sjtu.edu.cn/" target="_blank">物理与天文系</a></li>
<li><a href="http://skatelescope.org/" target="_blank">SKA Orgnization</a></li>
<li><a href="http://21cma.bao.ac.cn/" target="_blank">21CMA</a></li>
<li><a href="http://65m.shao.cas.cn/" target="_blank">上海65米射电望远镜</a></li>
<li><a href="http://159.226.88.7/NGCA/meeting/NGCA_SummerSchool2014.html" target="_blank">2014射电天文暑期学校</a></li>
<li><a href="http://ska2013.csp.escience.cn/" target="_blank">2013SKA暑期学校</a></li>
</ul>
<ul class="masthead-links">
<li>Powered by:</li>
<li><a href="https://www.djangoproject.com/" target="_blank">Django</a></li>
<li><a href="http://getbootstrap.com/" target="_blank">Bootstrap</a></li>
</ul>
<p>沪交ICP备20141466</p>
<br>
</footer>
{% endblock %}
{% block js_extra %}
<script src="{% static 'js/index.js' %}" type="text/javascript"></script>
{% endblock %}
{# vim: set ts=8 sw=2 tw=0 fenc=utf-8 ft=htmldjango.html: #}
|