jumbo-jekyll-theme 5.6.9.2 → 5.6.9.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +10 -10
- data/_config.yml +213 -213
- data/_data/example-carousel-data-source.yml +36 -36
- data/_data/footer.yml +33 -33
- data/_data/nav.yml +17 -17
- data/_data/settings.yml +103 -103
- data/_data/tags.yml +11 -11
- data/_data/universal-nav.yml +7 -7
- data/_includes/breadcrumb.html +97 -97
- data/_includes/core/blocks.html +30 -30
- data/_includes/core/button.html +5 -5
- data/_includes/core/buttons.html +5 -5
- data/_includes/core/container_row.html +7 -7
- data/_includes/core/feature_block.html +43 -43
- data/_includes/core/full_width_row.html +5 -5
- data/_includes/core/members-section.html +32 -32
- data/_includes/core/slider.html +33 -33
- data/_includes/core/slider_row.html +2 -2
- data/_includes/core/title.html +3 -3
- data/_includes/core/youtube_video_embed.html +11 -11
- data/_includes/css.html +9 -9
- data/_includes/custom_include.html +13 -13
- data/_includes/custom_include_row.html +562 -562
- data/_includes/display-blog-posts.html +154 -154
- data/_includes/flow_inner.html +19 -19
- data/_includes/footer.html +68 -68
- data/_includes/google-analytics.html +16 -16
- data/_includes/head.html +19 -19
- data/_includes/image.html +6 -6
- data/_includes/javascript.html +10 -10
- data/_includes/jumbotron.html +115 -115
- data/_includes/linaro-404.html +19 -19
- data/_includes/nav.html +153 -153
- data/_includes/pagination.html +38 -38
- data/_includes/post-sidebar.html +182 -182
- data/_includes/responsive-image.html +5 -5
- data/_includes/schema.html +43 -43
- data/_includes/thumb.html +1 -1
- data/_includes/thumbnail_image.html +9 -9
- data/_includes/universal-nav.html +30 -30
- data/_layouts/author.html +5 -5
- data/_layouts/default.html +3 -3
- data/_layouts/error.html +25 -25
- data/_layouts/flow.html +35 -35
- data/_layouts/jumbotron.html +11 -11
- data/_layouts/post-index.html +16 -16
- data/_layouts/post.html +39 -39
- data/_sass/app/overrides.scss +65 -65
- data/_sass/app/search.scss +51 -51
- data/_sass/bootstrap/_variables.scss +932 -932
- data/_sass/core.scss +20 -20
- data/_sass/core/blog.scss +425 -425
- data/_sass/core/carousel-header.scss +90 -90
- data/_sass/core/error.scss +190 -190
- data/_sass/core/flow.scss +186 -186
- data/_sass/core/footer.scss +141 -141
- data/_sass/core/jumbotron.scss +279 -279
- data/_sass/core/normalize.scss +357 -357
- data/_sass/core/theme.scss +871 -871
- data/_sass/home.scss +2 -2
- data/assets/css/main-blog.scss +13 -13
- data/assets/css/main-error.scss +13 -13
- data/assets/css/main.scss +11 -11
- data/assets/js/app/facebook.js +7 -7
- data/assets/js/app/main.js +261 -261
- data/assets/js/pacakge-search.js +9 -9
- data/assets/js/package-blog.js +12 -12
- data/assets/js/package-extended.js +14 -14
- data/assets/js/package-home.js +14 -14
- data/assets/js/package-main.js +13 -13
- data/assets/js/package-search.js +8 -8
- data/assets/js/vendor/fess-ss.min.js +24 -24
- data/robots.txt +9 -9
- metadata +2 -16
@@ -1,154 +1,154 @@
|
|
1
|
-
{% if paginator.total_posts > 0 %}
|
2
|
-
<div class="row blog-section">
|
3
|
-
{% for post in paginator.posts %}
|
4
|
-
{% assign timeframe = 604800 %}
|
5
|
-
{% assign post_in_seconds = post.date | date: "%s" | plus: 0 %}
|
6
|
-
{% assign recent_posts = "now" | date: "%s" | minus: timeframe %}
|
7
|
-
|
8
|
-
{% if forloop.first and paginator.page == 1 %}
|
9
|
-
<style>
|
10
|
-
@media(min-width: 1000px){
|
11
|
-
.blog-post-item-col:nth-child(3n+2) > .blog-post-item {
|
12
|
-
margin-right:0px !important;
|
13
|
-
margin-left:0px !important;
|
14
|
-
}
|
15
|
-
}
|
16
|
-
</style>
|
17
|
-
<div class="featured-post-row">
|
18
|
-
<div class="col-xs-12 col-sm-7 col-sm-push-5 latest-featured-post">
|
19
|
-
<a href="{{post.url}}">
|
20
|
-
{% assign image_path = "" %}
|
21
|
-
{% if post.image.thumb %}
|
22
|
-
{% capture image_path %}{{site.blog_images_dir}}thumbs/{{post.image.thumb}}{% endcapture %}
|
23
|
-
{% capture full_path %}/{{site.blog_images_dir}}thumbs/{{post.image.thumb}}{% endcapture %}
|
24
|
-
{% elsif post.image.name %}
|
25
|
-
{% capture image_path %}{{site.blog_images_dir}}{{post.image.name}}{% endcapture %}
|
26
|
-
{% capture full_path %}/{{site.blog_images_dir}}{{post.image.name}}{% endcapture %}
|
27
|
-
{% elsif post.image.path %}
|
28
|
-
{% capture image_path %}{{post.image.path | remove_first: "/" }}{% endcapture %}
|
29
|
-
{% capture full_path %}{{post.image.path}}{% endcapture %}
|
30
|
-
{% elsif post.image == site.data.settings.social_share_image %}
|
31
|
-
{% capture image_path %}{{site.data.settings.placeholder | remove_first: "/" }}{% endcapture %}
|
32
|
-
{% capture full_path %}{{site.data.settings.placeholder}}{% endcapture %}
|
33
|
-
{% elsif post.image %}
|
34
|
-
{% capture image_path %}{{post.image | remove_first: "/" }}{% endcapture %}
|
35
|
-
{% capture full_path %}{{post.image}}{% endcapture %}
|
36
|
-
{% else %}
|
37
|
-
<img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="
|
38
|
-
data-src="{{site.data.settings.placeholder}}" alt="{{post.title}}" class="center-block img-responsive lazyload"/>
|
39
|
-
{% endif %}
|
40
|
-
{% if image_path != "" %}
|
41
|
-
{% responsive_image_block %}
|
42
|
-
template: _includes/thumbnail_image.html
|
43
|
-
path: {{ image_path }}
|
44
|
-
fullpath: {{ full_path }}
|
45
|
-
{% if post.title %}
|
46
|
-
title: {{ post.title | slugify: "ascii"}}
|
47
|
-
alt: {{ post.title | slugify: "ascii"}}
|
48
|
-
{% endif %}
|
49
|
-
{% endresponsive_image_block %}
|
50
|
-
{% endif %}
|
51
|
-
</a>
|
52
|
-
</div>
|
53
|
-
<div class="col-xs-12 col-sm-5 col-sm-pull-7 latest-featured-post-content">
|
54
|
-
<a href="{{post.url}}">
|
55
|
-
<div class="post-info">
|
56
|
-
<span class="post-cat">{{post.categories | first | capitalize }}</span>
|
57
|
-
<h3>{{post.title}}</h3>
|
58
|
-
<p class="excerpt">
|
59
|
-
{% if post.description %}
|
60
|
-
{{post.description}}
|
61
|
-
{% else %}
|
62
|
-
{{ post.content | strip_html | truncatewords:30 }}
|
63
|
-
{% endif %}
|
64
|
-
</p>
|
65
|
-
<a href="{{post.url}}" class="btn btn-primary">
|
66
|
-
Read Post
|
67
|
-
</a>
|
68
|
-
</div>
|
69
|
-
</a>
|
70
|
-
</div>
|
71
|
-
</div>
|
72
|
-
{% else %}
|
73
|
-
|
74
|
-
{% comment %}
|
75
|
-
Blog Filler Element - This is needed due to the layout of the blog. If not included then there will be an empty col on the first blog page.
|
76
|
-
{% endcomment %}
|
77
|
-
{% if forloop.index == 4 and paginator.page == 1 %}
|
78
|
-
{% if site.data.settings.blog.filler-element %}
|
79
|
-
{% include {{site.data.settings.blog.filler-element}} %}
|
80
|
-
{% endif %}
|
81
|
-
{% endif %}
|
82
|
-
|
83
|
-
<div class="col-sm-4 col-xs-12 blog-post-item-col no-padding">
|
84
|
-
<div class="blog-post-item">
|
85
|
-
<a href="{{post.url}}">
|
86
|
-
<div class="blog-featured-image {% if post.image == site.data.settings.social_share_image %}using-placeholder{% endif %}">
|
87
|
-
|
88
|
-
{% assign image_path = "" %}
|
89
|
-
{% if post.image.thumb %}
|
90
|
-
{% capture image_path %}{{site.blog_images_dir}}thumbs/{{post.image.thumb}}{% endcapture %}
|
91
|
-
{% capture full_path %}/{{site.blog_images_dir}}thumbs/{{post.image.thumb}}{% endcapture %}
|
92
|
-
{% elsif post.image.name %}
|
93
|
-
{% capture image_path %}{{site.blog_images_dir}}{{post.image.name}}{% endcapture %}
|
94
|
-
{% capture full_path %}/{{site.blog_images_dir}}{{post.image.name}}{% endcapture %}
|
95
|
-
{% elsif post.image.path %}
|
96
|
-
{% capture image_path %}{{post.image.path | remove_first: "/" }}{% endcapture %}
|
97
|
-
{% capture full_path %}{{post.image.path}}{% endcapture %}
|
98
|
-
{% elsif post.image == site.data.settings.social_share_image %}
|
99
|
-
{% capture image_path %}{{site.data.settings.placeholder | remove_first: "/" }}{% endcapture %}
|
100
|
-
{% capture full_path %}{{site.data.settings.placeholder}}{% endcapture %}
|
101
|
-
{% assign using_placeholder = "true" %}
|
102
|
-
{% elsif post.image %}
|
103
|
-
{% capture image_path %}{{post.image | remove_first: "/" }}{% endcapture %}
|
104
|
-
{% capture full_path %}{{post.image}}{% endcapture %}
|
105
|
-
{% else %}
|
106
|
-
<img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="
|
107
|
-
data-src="{{site.data.settings.placeholder}}" alt="{{post.title}}" class="center-block img-responsive lazyload"/>
|
108
|
-
{% endif %}
|
109
|
-
|
110
|
-
{% if image_path != "" %}
|
111
|
-
{% responsive_image_block %}
|
112
|
-
template: _includes/thumbnail_image.html
|
113
|
-
path: {{ image_path }}
|
114
|
-
fullpath: {{ full_path }}
|
115
|
-
{% if post.title %}
|
116
|
-
title: {{ post.title | slugify: "ascii"}}
|
117
|
-
alt: {{ post.title | slugify: "ascii"}}
|
118
|
-
{% endif %}
|
119
|
-
{% endresponsive_image_block %}
|
120
|
-
{% endif %}
|
121
|
-
<div class="read-article">
|
122
|
-
<i class="fa fa-eye"></i> Read Article
|
123
|
-
</div>
|
124
|
-
</div>
|
125
|
-
<div class="blog-post-item-content">
|
126
|
-
<div class="post-cat">{{post.categories | first | capitalize }}</div>
|
127
|
-
{% include read_time.html content=post.content %}
|
128
|
-
<h3>{{ post.title}}</h3>
|
129
|
-
<small>{{ post.date | date: "%A, %B %-d, %Y"}}</small>
|
130
|
-
<br />
|
131
|
-
<p class="post_excerpt">
|
132
|
-
{{ post.content | strip_html | truncatewords:30 }}
|
133
|
-
</p>
|
134
|
-
<div class="author-section">
|
135
|
-
{% assign author = site.authors | where: "username", post.author | first %}
|
136
|
-
{% assign author-url = author.url %}
|
137
|
-
<div class="blog-author-image lazyload" data-bg="{% if author.image_path %}{{author.image_path}}{% else %}{{site.data.settings.blog.avatar_placeholder}}{% endif %}"></div>
|
138
|
-
<small class="blog-author">
|
139
|
-
<em>{% if author.name %}{{author.name}}{% else %}{{post.author}}{% endif %}</em>
|
140
|
-
</small>
|
141
|
-
</div>
|
142
|
-
</div>
|
143
|
-
</a>
|
144
|
-
</div>
|
145
|
-
|
146
|
-
</div>
|
147
|
-
{% endif %}
|
148
|
-
{% endfor %}
|
149
|
-
</div>
|
150
|
-
{% else %}
|
151
|
-
<p>
|
152
|
-
No posts of this category were found!
|
153
|
-
</p>
|
154
|
-
{% endif %}
|
1
|
+
{% if paginator.total_posts > 0 %}
|
2
|
+
<div class="row blog-section">
|
3
|
+
{% for post in paginator.posts %}
|
4
|
+
{% assign timeframe = 604800 %}
|
5
|
+
{% assign post_in_seconds = post.date | date: "%s" | plus: 0 %}
|
6
|
+
{% assign recent_posts = "now" | date: "%s" | minus: timeframe %}
|
7
|
+
|
8
|
+
{% if forloop.first and paginator.page == 1 %}
|
9
|
+
<style>
|
10
|
+
@media(min-width: 1000px){
|
11
|
+
.blog-post-item-col:nth-child(3n+2) > .blog-post-item {
|
12
|
+
margin-right:0px !important;
|
13
|
+
margin-left:0px !important;
|
14
|
+
}
|
15
|
+
}
|
16
|
+
</style>
|
17
|
+
<div class="featured-post-row">
|
18
|
+
<div class="col-xs-12 col-sm-7 col-sm-push-5 latest-featured-post">
|
19
|
+
<a href="{{post.url}}">
|
20
|
+
{% assign image_path = "" %}
|
21
|
+
{% if post.image.thumb %}
|
22
|
+
{% capture image_path %}{{site.blog_images_dir}}thumbs/{{post.image.thumb}}{% endcapture %}
|
23
|
+
{% capture full_path %}/{{site.blog_images_dir}}thumbs/{{post.image.thumb}}{% endcapture %}
|
24
|
+
{% elsif post.image.name %}
|
25
|
+
{% capture image_path %}{{site.blog_images_dir}}{{post.image.name}}{% endcapture %}
|
26
|
+
{% capture full_path %}/{{site.blog_images_dir}}{{post.image.name}}{% endcapture %}
|
27
|
+
{% elsif post.image.path %}
|
28
|
+
{% capture image_path %}{{post.image.path | remove_first: "/" }}{% endcapture %}
|
29
|
+
{% capture full_path %}{{post.image.path}}{% endcapture %}
|
30
|
+
{% elsif post.image == site.data.settings.social_share_image %}
|
31
|
+
{% capture image_path %}{{site.data.settings.placeholder | remove_first: "/" }}{% endcapture %}
|
32
|
+
{% capture full_path %}{{site.data.settings.placeholder}}{% endcapture %}
|
33
|
+
{% elsif post.image %}
|
34
|
+
{% capture image_path %}{{post.image | remove_first: "/" }}{% endcapture %}
|
35
|
+
{% capture full_path %}{{post.image}}{% endcapture %}
|
36
|
+
{% else %}
|
37
|
+
<img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="
|
38
|
+
data-src="{{site.data.settings.placeholder}}" alt="{{post.title}}" class="center-block img-responsive lazyload"/>
|
39
|
+
{% endif %}
|
40
|
+
{% if image_path != "" %}
|
41
|
+
{% responsive_image_block %}
|
42
|
+
template: _includes/thumbnail_image.html
|
43
|
+
path: {{ image_path }}
|
44
|
+
fullpath: {{ full_path }}
|
45
|
+
{% if post.title %}
|
46
|
+
title: {{ post.title | slugify: "ascii"}}
|
47
|
+
alt: {{ post.title | slugify: "ascii"}}
|
48
|
+
{% endif %}
|
49
|
+
{% endresponsive_image_block %}
|
50
|
+
{% endif %}
|
51
|
+
</a>
|
52
|
+
</div>
|
53
|
+
<div class="col-xs-12 col-sm-5 col-sm-pull-7 latest-featured-post-content">
|
54
|
+
<a href="{{post.url}}">
|
55
|
+
<div class="post-info">
|
56
|
+
<span class="post-cat">{{post.categories | first | capitalize }}</span>
|
57
|
+
<h3>{{post.title}}</h3>
|
58
|
+
<p class="excerpt">
|
59
|
+
{% if post.description %}
|
60
|
+
{{post.description}}
|
61
|
+
{% else %}
|
62
|
+
{{ post.content | strip_html | truncatewords:30 }}
|
63
|
+
{% endif %}
|
64
|
+
</p>
|
65
|
+
<a href="{{post.url}}" class="btn btn-primary">
|
66
|
+
Read Post
|
67
|
+
</a>
|
68
|
+
</div>
|
69
|
+
</a>
|
70
|
+
</div>
|
71
|
+
</div>
|
72
|
+
{% else %}
|
73
|
+
|
74
|
+
{% comment %}
|
75
|
+
Blog Filler Element - This is needed due to the layout of the blog. If not included then there will be an empty col on the first blog page.
|
76
|
+
{% endcomment %}
|
77
|
+
{% if forloop.index == 4 and paginator.page == 1 %}
|
78
|
+
{% if site.data.settings.blog.filler-element %}
|
79
|
+
{% include {{site.data.settings.blog.filler-element}} %}
|
80
|
+
{% endif %}
|
81
|
+
{% endif %}
|
82
|
+
|
83
|
+
<div class="col-sm-4 col-xs-12 blog-post-item-col no-padding">
|
84
|
+
<div class="blog-post-item">
|
85
|
+
<a href="{{post.url}}">
|
86
|
+
<div class="blog-featured-image {% if post.image == site.data.settings.social_share_image %}using-placeholder{% endif %}">
|
87
|
+
|
88
|
+
{% assign image_path = "" %}
|
89
|
+
{% if post.image.thumb %}
|
90
|
+
{% capture image_path %}{{site.blog_images_dir}}thumbs/{{post.image.thumb}}{% endcapture %}
|
91
|
+
{% capture full_path %}/{{site.blog_images_dir}}thumbs/{{post.image.thumb}}{% endcapture %}
|
92
|
+
{% elsif post.image.name %}
|
93
|
+
{% capture image_path %}{{site.blog_images_dir}}{{post.image.name}}{% endcapture %}
|
94
|
+
{% capture full_path %}/{{site.blog_images_dir}}{{post.image.name}}{% endcapture %}
|
95
|
+
{% elsif post.image.path %}
|
96
|
+
{% capture image_path %}{{post.image.path | remove_first: "/" }}{% endcapture %}
|
97
|
+
{% capture full_path %}{{post.image.path}}{% endcapture %}
|
98
|
+
{% elsif post.image == site.data.settings.social_share_image %}
|
99
|
+
{% capture image_path %}{{site.data.settings.placeholder | remove_first: "/" }}{% endcapture %}
|
100
|
+
{% capture full_path %}{{site.data.settings.placeholder}}{% endcapture %}
|
101
|
+
{% assign using_placeholder = "true" %}
|
102
|
+
{% elsif post.image %}
|
103
|
+
{% capture image_path %}{{post.image | remove_first: "/" }}{% endcapture %}
|
104
|
+
{% capture full_path %}{{post.image}}{% endcapture %}
|
105
|
+
{% else %}
|
106
|
+
<img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="
|
107
|
+
data-src="{{site.data.settings.placeholder}}" alt="{{post.title}}" class="center-block img-responsive lazyload"/>
|
108
|
+
{% endif %}
|
109
|
+
|
110
|
+
{% if image_path != "" %}
|
111
|
+
{% responsive_image_block %}
|
112
|
+
template: _includes/thumbnail_image.html
|
113
|
+
path: {{ image_path }}
|
114
|
+
fullpath: {{ full_path }}
|
115
|
+
{% if post.title %}
|
116
|
+
title: {{ post.title | slugify: "ascii"}}
|
117
|
+
alt: {{ post.title | slugify: "ascii"}}
|
118
|
+
{% endif %}
|
119
|
+
{% endresponsive_image_block %}
|
120
|
+
{% endif %}
|
121
|
+
<div class="read-article">
|
122
|
+
<i class="fa fa-eye"></i> Read Article
|
123
|
+
</div>
|
124
|
+
</div>
|
125
|
+
<div class="blog-post-item-content">
|
126
|
+
<div class="post-cat">{{post.categories | first | capitalize }}</div>
|
127
|
+
{% include read_time.html content=post.content %}
|
128
|
+
<h3>{{ post.title}}</h3>
|
129
|
+
<small>{{ post.date | date: "%A, %B %-d, %Y"}}</small>
|
130
|
+
<br />
|
131
|
+
<p class="post_excerpt">
|
132
|
+
{{ post.content | strip_html | truncatewords:30 }}
|
133
|
+
</p>
|
134
|
+
<div class="author-section">
|
135
|
+
{% assign author = site.authors | where: "username", post.author | first %}
|
136
|
+
{% assign author-url = author.url %}
|
137
|
+
<div class="blog-author-image lazyload" data-bg="{% if author.image_path %}{{author.image_path}}{% else %}{{site.data.settings.blog.avatar_placeholder}}{% endif %}"></div>
|
138
|
+
<small class="blog-author">
|
139
|
+
<em>{% if author.name %}{{author.name}}{% else %}{{post.author}}{% endif %}</em>
|
140
|
+
</small>
|
141
|
+
</div>
|
142
|
+
</div>
|
143
|
+
</a>
|
144
|
+
</div>
|
145
|
+
|
146
|
+
</div>
|
147
|
+
{% endif %}
|
148
|
+
{% endfor %}
|
149
|
+
</div>
|
150
|
+
{% else %}
|
151
|
+
<p>
|
152
|
+
No posts of this category were found!
|
153
|
+
</p>
|
154
|
+
{% endif %}
|
data/_includes/flow_inner.html
CHANGED
@@ -1,19 +1,19 @@
|
|
1
|
-
{% for section in include.sections %}
|
2
|
-
{% if section.format == "title" %}
|
3
|
-
{% include core/title.html object=section.title_content %}
|
4
|
-
{% elsif section.format == "members" %}
|
5
|
-
{% include core/members-section.html object=section %}
|
6
|
-
{% elsif section.format == "block" %}
|
7
|
-
{% include core/blocks.html object=section %}
|
8
|
-
{% elsif section.format == "buttons" %}
|
9
|
-
{% include core/buttons.html object=section.buttons_content style=section.style %}
|
10
|
-
{% elsif section.format == "text" %}
|
11
|
-
{% include core/text.html object=section %}
|
12
|
-
{% elsif section.format == "custom_include" %}
|
13
|
-
{% include {{section.source}} object=section %}
|
14
|
-
{% elsif section.format == "slider" %}
|
15
|
-
{% include core/slider_row.html object=section.slider_content %}
|
16
|
-
{% elsif section.format == "feature_block" %}
|
17
|
-
{% include core/feature_block.html object=section.feature_block_content %}
|
18
|
-
{% endif %}
|
19
|
-
{% endfor %}
|
1
|
+
{% for section in include.sections %}
|
2
|
+
{% if section.format == "title" %}
|
3
|
+
{% include core/title.html object=section.title_content %}
|
4
|
+
{% elsif section.format == "members" %}
|
5
|
+
{% include core/members-section.html object=section %}
|
6
|
+
{% elsif section.format == "block" %}
|
7
|
+
{% include core/blocks.html object=section %}
|
8
|
+
{% elsif section.format == "buttons" %}
|
9
|
+
{% include core/buttons.html object=section.buttons_content style=section.style %}
|
10
|
+
{% elsif section.format == "text" %}
|
11
|
+
{% include core/text.html object=section %}
|
12
|
+
{% elsif section.format == "custom_include" %}
|
13
|
+
{% include {{section.source}} object=section %}
|
14
|
+
{% elsif section.format == "slider" %}
|
15
|
+
{% include core/slider_row.html object=section.slider_content %}
|
16
|
+
{% elsif section.format == "feature_block" %}
|
17
|
+
{% include core/feature_block.html object=section.feature_block_content %}
|
18
|
+
{% endif %}
|
19
|
+
{% endfor %}
|
data/_includes/footer.html
CHANGED
@@ -1,68 +1,68 @@
|
|
1
|
-
<footer>
|
2
|
-
<div class="row footer footer-main p-t-40">
|
3
|
-
<div class="container">
|
4
|
-
{% if site.data.footer.display-contact-details %}
|
5
|
-
<div class="col-xs-12 col-sm-3 contact-details">
|
6
|
-
<address>
|
7
|
-
<a class="email" href="mailto:{{site.email}}?subject={{site.url}}">{{site.email}}</a> <br>
|
8
|
-
{% for address-line in site.address %}
|
9
|
-
{{address-line}}<br>
|
10
|
-
{% endfor %}
|
11
|
-
</address>
|
12
|
-
</div>
|
13
|
-
{% endif %}
|
14
|
-
{% if site.data.footer.second-column %}
|
15
|
-
<div class="col-xs-12 col-sm-3 footer-column">
|
16
|
-
<h3>{{site.data.footer.second-column.title}}</h3>
|
17
|
-
<ul class="list-group">
|
18
|
-
{% if site.data.footer.second-column.latest-posts %}
|
19
|
-
{% include_cached latest-posts.html %}
|
20
|
-
{% else %}
|
21
|
-
{% for item in site.data.footer.second-column.items %}
|
22
|
-
<li class="list-group-item">
|
23
|
-
<a href="{{item.url}}">{{item.name}}</a>
|
24
|
-
</li>
|
25
|
-
{% endfor %}
|
26
|
-
{% endif %}
|
27
|
-
</ul>
|
28
|
-
</div>
|
29
|
-
{% endif %}
|
30
|
-
{% if site.data.footer.third-column %}
|
31
|
-
<div class="col-xs-12 col-sm-3 footer-column">
|
32
|
-
<h3>{{site.data.footer.third-column.title}}</h3>
|
33
|
-
<ul class="list-group">
|
34
|
-
{% for item in site.data.footer.third-column.items %}
|
35
|
-
<li class="list-group-item">
|
36
|
-
<a href="{{item.url}}">{{item.name}}</a>
|
37
|
-
</li>
|
38
|
-
{% endfor %}
|
39
|
-
</ul>
|
40
|
-
</div>
|
41
|
-
{% endif %}
|
42
|
-
{% if site.data.footer.social-media-icons %}
|
43
|
-
<div class="col-xs-12 col-sm-3 footer-column footer-follow-section">
|
44
|
-
<h3>Follow us</h3>
|
45
|
-
{% include_cached social-media-icons.html %}
|
46
|
-
</div>
|
47
|
-
{% endif %}
|
48
|
-
</div>
|
49
|
-
</div>
|
50
|
-
<div class="row footer-bottom p-t-20 p-b-20">
|
51
|
-
<div class="container">
|
52
|
-
<div class="col-xs-12 text-white text-center">
|
53
|
-
Copyright © {{ 'now' | date: "%Y" }} {{site.data.footer.copyright-text}}
|
54
|
-
{% for link in site.data.footer.company-links %}
|
55
|
-
<span class="coloured-bp">•</span>
|
56
|
-
<a href="{{link.url}}">{{link.name}}</a>
|
57
|
-
{% endfor %}
|
58
|
-
</div>
|
59
|
-
<div class="col-xs-12 text-white text-center m-t-10">
|
60
|
-
{% if site.data.footer.linaro-branding %}
|
61
|
-
<a href="https://www.linaro.org">
|
62
|
-
<img src="/assets/images/Linaro-logo-white.png" class="footer-logo" alt="Linaro Logo White Footer Icon" />
|
63
|
-
</a>
|
64
|
-
{% endif %}
|
65
|
-
</div>
|
66
|
-
</div>
|
67
|
-
</div>
|
68
|
-
</footer>
|
1
|
+
<footer>
|
2
|
+
<div class="row footer footer-main p-t-40">
|
3
|
+
<div class="container">
|
4
|
+
{% if site.data.footer.display-contact-details %}
|
5
|
+
<div class="col-xs-12 col-sm-3 contact-details">
|
6
|
+
<address>
|
7
|
+
<a class="email" href="mailto:{{site.email}}?subject={{site.url}}">{{site.email}}</a> <br>
|
8
|
+
{% for address-line in site.address %}
|
9
|
+
{{address-line}}<br>
|
10
|
+
{% endfor %}
|
11
|
+
</address>
|
12
|
+
</div>
|
13
|
+
{% endif %}
|
14
|
+
{% if site.data.footer.second-column %}
|
15
|
+
<div class="col-xs-12 col-sm-3 footer-column">
|
16
|
+
<h3>{{site.data.footer.second-column.title}}</h3>
|
17
|
+
<ul class="list-group">
|
18
|
+
{% if site.data.footer.second-column.latest-posts %}
|
19
|
+
{% include_cached latest-posts.html %}
|
20
|
+
{% else %}
|
21
|
+
{% for item in site.data.footer.second-column.items %}
|
22
|
+
<li class="list-group-item">
|
23
|
+
<a href="{{item.url}}">{{item.name}}</a>
|
24
|
+
</li>
|
25
|
+
{% endfor %}
|
26
|
+
{% endif %}
|
27
|
+
</ul>
|
28
|
+
</div>
|
29
|
+
{% endif %}
|
30
|
+
{% if site.data.footer.third-column %}
|
31
|
+
<div class="col-xs-12 col-sm-3 footer-column">
|
32
|
+
<h3>{{site.data.footer.third-column.title}}</h3>
|
33
|
+
<ul class="list-group">
|
34
|
+
{% for item in site.data.footer.third-column.items %}
|
35
|
+
<li class="list-group-item">
|
36
|
+
<a href="{{item.url}}">{{item.name}}</a>
|
37
|
+
</li>
|
38
|
+
{% endfor %}
|
39
|
+
</ul>
|
40
|
+
</div>
|
41
|
+
{% endif %}
|
42
|
+
{% if site.data.footer.social-media-icons %}
|
43
|
+
<div class="col-xs-12 col-sm-3 footer-column footer-follow-section">
|
44
|
+
<h3>Follow us</h3>
|
45
|
+
{% include_cached social-media-icons.html %}
|
46
|
+
</div>
|
47
|
+
{% endif %}
|
48
|
+
</div>
|
49
|
+
</div>
|
50
|
+
<div class="row footer-bottom p-t-20 p-b-20">
|
51
|
+
<div class="container">
|
52
|
+
<div class="col-xs-12 text-white text-center">
|
53
|
+
Copyright © {{ 'now' | date: "%Y" }} {{site.data.footer.copyright-text}}
|
54
|
+
{% for link in site.data.footer.company-links %}
|
55
|
+
<span class="coloured-bp">•</span>
|
56
|
+
<a href="{{link.url}}">{{link.name}}</a>
|
57
|
+
{% endfor %}
|
58
|
+
</div>
|
59
|
+
<div class="col-xs-12 text-white text-center m-t-10">
|
60
|
+
{% if site.data.footer.linaro-branding %}
|
61
|
+
<a href="https://www.linaro.org">
|
62
|
+
<img src="/assets/images/Linaro-logo-white.png" class="footer-logo" alt="Linaro Logo White Footer Icon" />
|
63
|
+
</a>
|
64
|
+
{% endif %}
|
65
|
+
</div>
|
66
|
+
</div>
|
67
|
+
</div>
|
68
|
+
</footer>
|