1 {% extends "soc/base.html" %} |
1 {% extends "soc/home/public.html" %} |
2 {% comment %} |
2 {% comment %} |
3 Licensed under the Apache License, Version 2.0 (the "License"); |
3 Licensed under the Apache License, Version 2.0 (the "License"); |
4 you may not use this file except in compliance with the License. |
4 you may not use this file except in compliance with the License. |
5 You may obtain a copy of the License at |
5 You may obtain a copy of the License at |
6 |
6 |
11 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
11 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
12 See the License for the specific language governing permissions and |
12 See the License for the specific language governing permissions and |
13 limitations under the License. |
13 limitations under the License. |
14 {% endcomment %} |
14 {% endcomment %} |
15 |
15 |
16 {% block scripts %} |
16 {% block missing_doc %} |
17 {% if home_settings.feed_url %} |
17 The contents of this default Site home page can be changed by |
18 <script type="text/javascript" src="http://www.google.com/jsapi"></script> |
18 <a href="/docs/edit">creating a new Document</a> or |
19 <script type="text/javascript" src="/soc/content/js/blog-080819.js"></script> |
19 <a href="/docs/list">editing an existing Document</a> and then selecting |
20 <script type="text/javascript"> |
20 that Document in the |
21 |
21 <a href="/settings/edit">Site Settings</a> interface. |
22 google.load("feeds", "1"); |
22 Other elements of this page, such as a feed to be displayed below this |
23 |
23 content, can also be set using the |
24 function initialize() { |
24 <a href="/settings/edit">Site Settings</a> interface. |
25 var blog = new BlogPreview(document.getElementById("blog")); |
25 You need to sign in as site Developer in order to change |
26 blog.show("{{ home_settings.feed_url }}"); |
26 <a href="/settings/edit">Site Settings</a>. |
27 } |
|
28 google.setOnLoadCallback(initialize); |
|
29 |
|
30 </script> |
|
31 {% endif %} |
|
32 {% endblock %} |
27 {% endblock %} |
33 |
|
34 {% block page_title %} |
|
35 {% if home_document %} |
|
36 {{ home_document.title }} |
|
37 {% else %} |
|
38 {{ page.long_name }} |
|
39 {% endif %} |
|
40 {% endblock %} |
|
41 |
|
42 {% block header_title %} |
|
43 {% if home_document %} |
|
44 {{ home_document.short_name }} |
|
45 {% else %} |
|
46 {{ page.short_name }} |
|
47 {% endif %} |
|
48 {% endblock %} |
|
49 |
|
50 {% block body %} |
|
51 {% if home_document %} |
|
52 {{ home_document.content|safe }} |
|
53 <div id="lastmodified">Last updated on: {{ home_document.modified }}</div> |
|
54 {% else %} |
|
55 {% block missing_doc %} |
|
56 This is the default home page can be edited via Settings. |
|
57 {% endblock %} |
|
58 {% endif %} |
|
59 {% if home_settings.feed_url %} |
|
60 <div id="blog"></div> |
|
61 {% endif %} |
|
62 {% endblock %} |
|