summaryrefslogtreecommitdiffstats
path: root/templates/footer.html
blob: 9d19b41eb4e7484aa67d08e2c7c2e877df3dcdf6 (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
<!-- template footer.html -->
{% load extra_tags %}
{% load i18n %}
<!-- 页面底部开始: -->
    <div id="ground">
		<div>
			<div class="footerLinks" >
				<a href="{% url about %}">{% trans "about" %}</a><span class="link-separator"> |</span>
				<a href="{% url faq %}">{% trans "faq" %}</a><span class="link-separator"> |</span>
				<!--<a href="{{ blog_url }}">{% trans "blog" %}</a><span class="link-separator"> |</span>-->
				<!--<a href="{{ webmaster_email }}">{% trans "contact us" %}</a><span class="link-separator"> |</span>-->
				<a href="{% url privacy %}">{% trans "privacy policy" %}</a><span class="link-separator"> |</span>
                {% spaceless %}
				<a href=
                    {% if settings.FEEDBACK_SITE_URL %}
                        "{{settings.FEEDBACK_SITE_URL}}"
                        target="_blank">
                    {% else %}
                        "{% url feedback %}?next={{request.path}}">
                    {% endif %}
                    {% trans "give feedback" %}
                </a>
                {% endspaceless %}
			</div>
		  <p>
			 <a href="http://github.com/cnprog/CNPROG/network" target="_blank">
				powered by cnprog platform
				<!--<img src="{% href "/content/images/djangomade124x25_grey.gif" %}" border="0" alt="Made with Django." title="Made with Django." >-->
			 </a>
		  </p>
	   </div>
		 <div id="licenseLogo">
		  <a href="http://creativecommons.org/licenses/by/3.0/">
					<img src="{% href "/content/images/cc-wiki.png" %}" title="Creative Commons: Attribution - Share Alike" alt="cc-wiki" width="50" height="68" />
		  </a>
		 </div>
	</div>
	<!-- 页面底部结束: -->
        <script type="text/javascript">
            var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
            document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
            </script>
            <script type="text/javascript">
            try {
            var pageTracker = _gat._getTracker('{{ settings.GOOGLE_ANALYTICS_KEY }}');
            pageTracker._trackPageview();
            } catch(err) {}
        </script>
<!-- end template footer.html -->