File tree 3 files changed +31
-17
lines changed
themes/vocabulary_theme/templates
3 files changed +31
-17
lines changed Original file line number Diff line number Diff line change 1
1
_ model: page
2
2
---
3
+ _ template: page-with-title.html
4
+ ---
3
5
title: CC Tech Archives
4
6
---
5
7
body:
6
8
7
- This section contains archives related to older CC projects.
9
+ The following sections are archives related to older CC projects.
8
10
9
- * [ CC Tech Blog (2007-2014)] ( /archives/old-tech-blog/entries/ )
11
+ - [ CC Tech Blog (2007-2014)] ( /archives/old-tech-blog/entries/ )
12
+ - [ CC-DEVEL MAILING LIST (2005-2015)] ( https://lists.ibiblio.org/pipermail/cc-devel/ )
Original file line number Diff line number Diff line change 132
132
{% endfor %}
133
133
</ div >
134
134
</ div >
135
- < div class ="navbar-item has-dropdown is-hoverable ">
136
- < a class ="navbar-link is-arrowless {% if this.is_child_of('/archives') %} is-active{% endif%} "> Archives< i
137
- class ="icon caret-down "> </ i > </ a >
138
- < div class ="navbar-dropdown is-right ">
139
- {% for href, title in [
140
- ['/archives/old-tech-blog', 'CC Tech Blog (2007-2014)'],
141
- ['https://lists.ibiblio.org/pipermail/cc-devel/', 'cc-devel mailing list (2005-2015)'],
142
- ] %}
143
- < a class ="navbar-item " href ="{{ href }} "> {{ title }}</ a >
144
- {% endfor %}
145
- </ div >
146
- </ div >
147
135
</ div >
148
136
</ div >
149
137
</ nav >
238
226
< li >
239
227
< a href ="{{ '/blog'|url }} " class ="menu-item "> Blog</ a >
240
228
</ li >
241
- < li >
242
- < a href ="{{ '/contributing-code'|url }} " class ="menu-item "> Contribution Guidelines</ a >
243
- </ li >
244
229
< li >
245
230
< a href ="{{ '/community/community-team'|url }} " class ="menu-item "> Community Team</ a >
246
231
</ li >
247
232
< li >
248
233
< a href ="{{ '/contributing-code/projects'|url }} " class ="menu-item "> Project List</ a >
249
234
</ li >
235
+ < li >
236
+ < a href ="{{ '/archives'|url }} " class ="menu-item "> Archives</ a >
237
+ </ li >
250
238
</ ul >
251
239
</ nav >
252
240
</ div >
Original file line number Diff line number Diff line change
1
+ {% extends "layout.html" %}
2
+
3
+ {% block title %}{{ this.title }}{% endblock %}
4
+
5
+ {% block body %}
6
+ < div class ="code-guidelines ">
7
+ < header class ="header ">
8
+ < div class ="container is-paddingless ">
9
+ < h1 > {{ this.title }}</ h1 >
10
+ < div class ="description column is-9 is-paddingless ">
11
+ {{ this.description }}
12
+ </ div >
13
+ </ div >
14
+ </ header >
15
+ < div class ="container code-guidelines-body ">
16
+ < div class ="columns ">
17
+ < div class ="column content ">
18
+ {{ this.body }}
19
+ </ div >
20
+ </ div >
21
+ </ div >
22
+ </ div >
23
+ {% endblock %}
You can’t perform that action at this time.
0 commit comments