ieee-students-branch-jekyll-theme 0.1.01
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/README.md +2 -0
- data/_includes/footer.html +14 -0
- data/_includes/header.html +25 -0
- data/_includes/headerimage.html +5 -0
- data/_includes/ieeefootbar.html +44 -0
- data/_includes/ieeeheader.html +50 -0
- data/_includes/nav.html +0 -0
- data/_includes/navbar.html +71 -0
- data/_includes/navbarauto.html +70 -0
- data/_includes/notice.html +11 -0
- data/_includes/sitemap.html +22 -0
- data/_includes/socialmedia.html +16 -0
- data/_layouts/_includes +27 -0
- data/_layouts/blank.html +9 -0
- data/_layouts/blankfullwidth.html +8 -0
- data/_layouts/default.html +12 -0
- data/_layouts/fullwidth.html +7 -0
- data/_layouts/fullwidthhome.html +7 -0
- data/_layouts/home.html +8 -0
- data/_layouts/page.html +5 -0
- data/_layouts/post.html +5 -0
- data/_layouts/subpage.html +5 -0
- data/assets/css/blue-white.css +372 -0
- data/assets/css/colors.css +285 -0
- data/assets/css/green-white.css +375 -0
- data/assets/css/greys.css +375 -0
- data/assets/css/ieeebootstrap.css +1360 -0
- data/assets/css/orange-white.css +373 -0
- data/assets/css/style.css +23 -0
- data/assets/images/header.png +0 -0
- data/assets/images/headerimage.png +0 -0
- data/assets/images/icon_key_white.gif +0 -0
- data/assets/images/ieee_mb_black.png +0 -0
- data/assets/images/ieee_mb_white.png +0 -0
- data/assets/images/logo.png +0 -0
- data/assets/images/social/facebook-icon.png +0 -0
- data/assets/images/social/gplus-icon.png +0 -0
- data/assets/images/social/linkedin-icon.png +0 -0
- data/assets/images/social/rss-icon.png +0 -0
- data/assets/images/social/twitter-icon.png +0 -0
- data/assets/images/social/youtube-icon.png +0 -0
- metadata +132 -0
@@ -0,0 +1,373 @@
|
|
1
|
+
/* IEEE GLOBAL HEADER
|
2
|
+
-------------------------------------------------- */
|
3
|
+
.global-nav {
|
4
|
+
background-color: #CCCCCC;
|
5
|
+
color: #000;
|
6
|
+
}
|
7
|
+
|
8
|
+
.global-nav a{
|
9
|
+
color: #000;
|
10
|
+
}
|
11
|
+
|
12
|
+
|
13
|
+
a.sign-in {
|
14
|
+
background: url(../images/icon_key_white.gif);
|
15
|
+
color: #000;
|
16
|
+
}
|
17
|
+
|
18
|
+
.dropdown .sign-in-container a {
|
19
|
+
color: #428bca;
|
20
|
+
}
|
21
|
+
|
22
|
+
.dropdown .sign-in-container {
|
23
|
+
color: #000;
|
24
|
+
}
|
25
|
+
|
26
|
+
.dropdown .sign-in-container > .glyphicon, #mobile-signin .glyphicon {
|
27
|
+
color: #E37222;
|
28
|
+
}
|
29
|
+
|
30
|
+
.has-children {
|
31
|
+
color: #000;
|
32
|
+
}
|
33
|
+
.active > .has-children {
|
34
|
+
color: #000;
|
35
|
+
}
|
36
|
+
|
37
|
+
|
38
|
+
/* HEADER STYLES
|
39
|
+
-------------------------------------------------- */
|
40
|
+
.site-title a, .site-title a:hover, .site-title a:active, .site-title a:visited {
|
41
|
+
color: #fff;
|
42
|
+
text-decoration: none;
|
43
|
+
}
|
44
|
+
|
45
|
+
.banner{
|
46
|
+
background-color: #CB7E2B;
|
47
|
+
}
|
48
|
+
|
49
|
+
.navbar-default .navbar-collapse,.navbar-default .navbar-form {
|
50
|
+
border-color: transparent;
|
51
|
+
}
|
52
|
+
|
53
|
+
.navbar-wrapper .container {
|
54
|
+
/* background-color: #eee; */
|
55
|
+
background-color: transparent;
|
56
|
+
/* border-bottom: 2px solid #919191; */
|
57
|
+
}
|
58
|
+
|
59
|
+
.navbar-default {
|
60
|
+
background-color: transparent;
|
61
|
+
border: 0;
|
62
|
+
}
|
63
|
+
|
64
|
+
.navbar-default .navbar-collapse {
|
65
|
+
border-bottom: 2px solid #CCC;
|
66
|
+
}
|
67
|
+
|
68
|
+
.navbar-default .navbar-nav>.open>a, .navbar-default .navbar-nav>.open>a:hover, .navbar-default .navbar-nav>.open>a:focus {
|
69
|
+
background-color: #CCC;
|
70
|
+
color: #262626;
|
71
|
+
}
|
72
|
+
|
73
|
+
.dropdown-menu>li>a:hover {
|
74
|
+
text-decoration: none;
|
75
|
+
color: #262626;
|
76
|
+
background-color: #CCC;
|
77
|
+
}
|
78
|
+
|
79
|
+
.dropdown-menu>.active>a, .dropdown-menu>.active>a:hover, .dropdown-menu>.active>a:focus {
|
80
|
+
color: #fff;
|
81
|
+
background-color: #CB7E2B;
|
82
|
+
}
|
83
|
+
|
84
|
+
.dropdown-submenu>a:after {
|
85
|
+
border-left-color: #777;
|
86
|
+
}
|
87
|
+
|
88
|
+
.dropdown-submenu:hover > a:after {
|
89
|
+
border-left-color: #000;
|
90
|
+
}
|
91
|
+
|
92
|
+
.navbar-default .navbar-nav>li>a {
|
93
|
+
color: #777;
|
94
|
+
}
|
95
|
+
|
96
|
+
.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:hover, .navbar-default .navbar-nav>.active>a:focus {
|
97
|
+
color: #FFFFFF;
|
98
|
+
background-color: #CB7E2B;
|
99
|
+
}
|
100
|
+
|
101
|
+
/* SEARCH AND SOCIAL
|
102
|
+
-------------------------------------------------- */
|
103
|
+
.btn-search, input.gsc-search-button {
|
104
|
+
color: #fff !important;
|
105
|
+
background-color: #CB7E2B !important;
|
106
|
+
border-color: #ae6b24 !important;
|
107
|
+
}
|
108
|
+
|
109
|
+
.btn-search:hover, input.gsc-search-button:hover {
|
110
|
+
background-color: #bd7628 !important;
|
111
|
+
}
|
112
|
+
|
113
|
+
.btn-search:focus, input.gsc-search-button:focus {
|
114
|
+
color: #fff !important;
|
115
|
+
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125) !important;
|
116
|
+
box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125) !important;
|
117
|
+
}
|
118
|
+
|
119
|
+
/* GLYPHICON
|
120
|
+
-------------------------------------------------- */
|
121
|
+
.glyphicon {
|
122
|
+
color: #CB7E2B;
|
123
|
+
}
|
124
|
+
|
125
|
+
/* BUTTON STYLES
|
126
|
+
-------------------------------------------------- */
|
127
|
+
.btn-primary {
|
128
|
+
color: #fff;
|
129
|
+
background-color: #CB7E2B;
|
130
|
+
border-color: #ae6b24;
|
131
|
+
}
|
132
|
+
|
133
|
+
.btn-primary:hover {
|
134
|
+
color: #fff;
|
135
|
+
background-color: #bd7628;
|
136
|
+
border-color: #ae6b24;
|
137
|
+
}
|
138
|
+
|
139
|
+
|
140
|
+
.btn-primary:active, .btn-primary:focus {
|
141
|
+
background-color: #bd7628;
|
142
|
+
border-color: #ae6b24
|
143
|
+
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125) !important;
|
144
|
+
box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125) !important;
|
145
|
+
}
|
146
|
+
|
147
|
+
/* HOME PAGE STYLES
|
148
|
+
-------------------------------------------------- */
|
149
|
+
.highlights h3, .widgets h3 {
|
150
|
+
border-top: 3px solid #CB7E2B;
|
151
|
+
color: #000;
|
152
|
+
}
|
153
|
+
|
154
|
+
/* THE WEDGE
|
155
|
+
-------------------------------------------------- */
|
156
|
+
.the-wedge-bottom {
|
157
|
+
border-color: transparent transparent #CB7E2B transparent;
|
158
|
+
}
|
159
|
+
|
160
|
+
/* IEEE MB FOOTER STYLES
|
161
|
+
-------------------------------------------------- */
|
162
|
+
.footer{
|
163
|
+
background-color: #CB7E2B;
|
164
|
+
color: #fff
|
165
|
+
}
|
166
|
+
|
167
|
+
.footer p a, footer ul li a{
|
168
|
+
color: #fff;
|
169
|
+
}
|
170
|
+
|
171
|
+
.footer p a, footer ul li a:hover{
|
172
|
+
color: #fff;
|
173
|
+
}
|
174
|
+
|
175
|
+
/* PAGE STYLES
|
176
|
+
-------------------------------------------------- */
|
177
|
+
/*.breadcrumb {
|
178
|
+
background-color: transparent;
|
179
|
+
border-bottom: 2px solid #CB7E2B;
|
180
|
+
}*/
|
181
|
+
|
182
|
+
.breadcrumb {
|
183
|
+
color: #000;
|
184
|
+
}
|
185
|
+
|
186
|
+
.breadcrumb>.active {
|
187
|
+
color: #999;
|
188
|
+
}
|
189
|
+
|
190
|
+
.navbar-collapse, .front-page {
|
191
|
+
background-color: #fff;
|
192
|
+
}
|
193
|
+
|
194
|
+
blockquote {
|
195
|
+
border-left: 2px solid #ccc;
|
196
|
+
}
|
197
|
+
|
198
|
+
.page-content .col-md-3, .page-content .col-md-9, .page-content .col-md-12 {
|
199
|
+
background-color: #fff
|
200
|
+
}
|
201
|
+
|
202
|
+
.page-content table > thead > tr > th, .page-content table > tbody > tr > th,
|
203
|
+
.page-content table > tfoot > tr > th, .page-content table > thead > tr > td,
|
204
|
+
.page-content table > tbody > tr > td, .page-content table > tfoot > tr > td {
|
205
|
+
border-top: 1px solid #ddd;
|
206
|
+
}
|
207
|
+
|
208
|
+
.page-content table > thead > tr > th {
|
209
|
+
border-bottom: 2px solid #ddd;
|
210
|
+
}
|
211
|
+
|
212
|
+
.page-content table > tbody > tr:nth-child(odd) > td, .page-content table > tbody > tr:nth-child(odd) > th, .page-content table > tbody > tr.odd td, .page-content table > tbody > tr.odd th{
|
213
|
+
background-color: #f9f9f9;
|
214
|
+
}
|
215
|
+
|
216
|
+
.page-content table > tbody > tr:hover > td, .page-content table > tbody > tr:hover > th {
|
217
|
+
background-color: #f5f5f5;
|
218
|
+
}
|
219
|
+
|
220
|
+
/* ALL IN ONE CALENDAR OVERRIDES
|
221
|
+
-------------------------------------------------- */
|
222
|
+
.ai1ec-calendar-view > tbody > tr:nth-child(odd) > td, .ai1ec-calendar-view table > tbody > tr:nth-child(odd) > th,
|
223
|
+
.gsc-results-wrapper-visible table > tbody > tr:nth-child(odd) > td {
|
224
|
+
background-color: transparent;
|
225
|
+
}
|
226
|
+
|
227
|
+
.ai1ec-calendar-view table > tbody > tr:hover > td, .ai1ec-calendar-view table > tbody > tr:hover > th,
|
228
|
+
.gsc-results-wrapper-visible table > tbody > tr:hover > th {
|
229
|
+
background-color: transparent;
|
230
|
+
}
|
231
|
+
|
232
|
+
/* upcoming events */
|
233
|
+
.ai1ec-agenda-view .ai1ec-date.ai1ec-today, .ai1ec-agenda-widget-view .ai1ec-date.ai1ec-today {
|
234
|
+
background: #eee;
|
235
|
+
}
|
236
|
+
|
237
|
+
/* SECONDARY NAV ADDITIONAL STYLES
|
238
|
+
-------------------------------------------------- */
|
239
|
+
a.list-group-item.active, a.list-group-item.active:hover, a.list-group-item.active:focus {
|
240
|
+
color: #fff;
|
241
|
+
background-color: #CB7E2B;
|
242
|
+
border-color: #CB7E2B;
|
243
|
+
}
|
244
|
+
|
245
|
+
|
246
|
+
/* FOR GOOGLE CS
|
247
|
+
-------------------------------------------------- */
|
248
|
+
/* styles for Google CS */
|
249
|
+
input.gsc-input {
|
250
|
+
color: #555 !important;
|
251
|
+
background-color: #fff !important;
|
252
|
+
border: 1px solid #ccc !important;
|
253
|
+
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075) !important;
|
254
|
+
box-shadow: inset 0 1px 1px rgba(0,0,0,.075) !important;
|
255
|
+
-webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s !important;
|
256
|
+
transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s !important;
|
257
|
+
}
|
258
|
+
|
259
|
+
input.gsc-search-button {
|
260
|
+
border: 1px solid rgba(0, 0, 0, 0) !important;
|
261
|
+
}
|
262
|
+
|
263
|
+
div.gsc-selected-option-container {
|
264
|
+
color: #333 !important;
|
265
|
+
border: 1px solid transparent !important;
|
266
|
+
background-color: #fff !important;
|
267
|
+
border-color: #ccc !important;
|
268
|
+
}
|
269
|
+
|
270
|
+
div.gsc-option-selector {
|
271
|
+
border-right: 4px solid transparent !important;
|
272
|
+
border-left: 4px solid transparent !important;
|
273
|
+
}
|
274
|
+
|
275
|
+
.gsc-tabHeader {
|
276
|
+
border: 1px solid transparent !important;
|
277
|
+
}
|
278
|
+
|
279
|
+
.gsc-tabHeader.gsc-tabhActive {
|
280
|
+
color: #fff !important;
|
281
|
+
background-color: #CB7E2B !important;
|
282
|
+
/* border-color: #ae6b24 !important; */
|
283
|
+
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125) !important;
|
284
|
+
box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125) !important;
|
285
|
+
}
|
286
|
+
|
287
|
+
.gsc-tabHeader.gsc-tabhInactive {
|
288
|
+
color: #333 !important;
|
289
|
+
background-color: #fff !important;
|
290
|
+
border-color: #ccc !important;
|
291
|
+
}
|
292
|
+
|
293
|
+
.gsc-tabHeader:hover,
|
294
|
+
.gsc-tabHeader:focus {
|
295
|
+
color: #333 !important;
|
296
|
+
background-color: #ebebeb !important;
|
297
|
+
border-color: #adadad !important;
|
298
|
+
}
|
299
|
+
|
300
|
+
.gsc-tabHeader:active {
|
301
|
+
color: #fff !important;
|
302
|
+
background-color: #CB7E2B !important;
|
303
|
+
border-color: #ae6b24 !important;
|
304
|
+
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125) !important;
|
305
|
+
box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125) !important;
|
306
|
+
}
|
307
|
+
|
308
|
+
.gsc-tabsArea {
|
309
|
+
border-color: transparent !important;
|
310
|
+
}
|
311
|
+
|
312
|
+
.ginput_container input, .ginput_container textarea, .ginput_container input[type=checkbox], .ginput_container input[type=radio] {
|
313
|
+
color: #555;
|
314
|
+
background-color: #fff;
|
315
|
+
border: 1px solid #000;
|
316
|
+
}
|
317
|
+
|
318
|
+
input.gform_button, #submit {
|
319
|
+
border: 1px solid transparent;
|
320
|
+
color: #fff;
|
321
|
+
background-color: #CB7E2B;
|
322
|
+
border-color: #ae6b24;
|
323
|
+
}
|
324
|
+
|
325
|
+
#submit:hover, input.gform_button:hover {
|
326
|
+
border: 1px solid transparent;
|
327
|
+
color: #fff;
|
328
|
+
background-color: #bd7628;
|
329
|
+
border-color: #ae6b24;
|
330
|
+
}
|
331
|
+
|
332
|
+
input.gform_button:focus, #submit:focus {
|
333
|
+
color: #fff;
|
334
|
+
background-color: #bd7628;
|
335
|
+
/* border-color: #adadad; */
|
336
|
+
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125) !important;
|
337
|
+
box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125) !important;
|
338
|
+
}
|
339
|
+
|
340
|
+
/* ADDITIONAL RESPONSIVE STYLES
|
341
|
+
-------------------------------------------------- */
|
342
|
+
@media (max-width: 991px) {
|
343
|
+
div.widgets > hr {
|
344
|
+
border-top: 2px solid #CB7E2B;
|
345
|
+
}
|
346
|
+
}
|
347
|
+
|
348
|
+
/* clear the background image */
|
349
|
+
@media (max-width: 912px) {
|
350
|
+
/* clear the background image */
|
351
|
+
.custom-background {
|
352
|
+
background-color:#fff;
|
353
|
+
}
|
354
|
+
}
|
355
|
+
|
356
|
+
@media (max-width: 767px) {
|
357
|
+
.navbar-default .navbar-nav li:first-child a {
|
358
|
+
border-top: 1px solid #919191;
|
359
|
+
}
|
360
|
+
|
361
|
+
.navbar-default .navbar-nav a {
|
362
|
+
border-bottom: 1px solid #919191;
|
363
|
+
}
|
364
|
+
}
|
365
|
+
|
366
|
+
input.gsc-search-button:hover, input.gsc-search-button:focus {
|
367
|
+
color: #fff !important;
|
368
|
+
}
|
369
|
+
|
370
|
+
input.gsc-search-button:active, input.gsc-search-button.active {
|
371
|
+
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125) !important;
|
372
|
+
box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125) !important;
|
373
|
+
}
|
@@ -0,0 +1,23 @@
|
|
1
|
+
/*
|
2
|
+
Theme Name: IEEE Sites Theme
|
3
|
+
Theme URI: http://underscores.me/
|
4
|
+
Author: TA Web Team
|
5
|
+
Author URI: http://underscores.me/
|
6
|
+
Description: IEEE WP Theme built on Bootstrap 3.
|
7
|
+
Version: 1.0.5
|
8
|
+
License: GNU General Public License
|
9
|
+
License URI: license.txt
|
10
|
+
Text Domain: ieee-wp-theme
|
11
|
+
Domain Path: /languages/
|
12
|
+
Tags:
|
13
|
+
|
14
|
+
This theme, like WordPress, is licensed under the GPL.
|
15
|
+
Use it to make something cool, have fun, and share what you've learned with others.
|
16
|
+
|
17
|
+
IEEE Sites Theme is based on Underscores http://underscores.me/, (C) 2012-2014 Automattic, Inc.
|
18
|
+
|
19
|
+
Resetting and rebuilding styles have been helped along thanks to the fine work of
|
20
|
+
Eric Meyer http://meyerweb.com/eric/tools/css/reset/index.html
|
21
|
+
along with Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
|
22
|
+
and Blueprint http://www.blueprintcss.org/
|
23
|
+
*/
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
metadata
ADDED
@@ -0,0 +1,132 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: ieee-students-branch-jekyll-theme
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.01
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- prateekrajgautam
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2019-04-01 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: jekyll
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '3.8'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '3.8'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: bundler
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '1.16'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '1.16'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rake
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '12.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '12.0'
|
55
|
+
description:
|
56
|
+
email:
|
57
|
+
- prateekrajgautam@gmail.com
|
58
|
+
executables: []
|
59
|
+
extensions: []
|
60
|
+
extra_rdoc_files: []
|
61
|
+
files:
|
62
|
+
- README.md
|
63
|
+
- _includes/footer.html
|
64
|
+
- _includes/header.html
|
65
|
+
- _includes/headerimage.html
|
66
|
+
- _includes/ieeefootbar.html
|
67
|
+
- _includes/ieeeheader.html
|
68
|
+
- _includes/nav.html
|
69
|
+
- _includes/navbar.html
|
70
|
+
- _includes/navbarauto.html
|
71
|
+
- _includes/notice.html
|
72
|
+
- _includes/sitemap.html
|
73
|
+
- _includes/socialmedia.html
|
74
|
+
- _layouts/_includes
|
75
|
+
- _layouts/blank.html
|
76
|
+
- _layouts/blankfullwidth.html
|
77
|
+
- _layouts/default.html
|
78
|
+
- _layouts/fullwidth.html
|
79
|
+
- _layouts/fullwidthhome.html
|
80
|
+
- _layouts/home.html
|
81
|
+
- _layouts/page.html
|
82
|
+
- _layouts/post.html
|
83
|
+
- _layouts/subpage.html
|
84
|
+
- assets/css/blue-white.css
|
85
|
+
- assets/css/colors.css
|
86
|
+
- assets/css/green-white.css
|
87
|
+
- assets/css/greys.css
|
88
|
+
- assets/css/ieeebootstrap.css
|
89
|
+
- assets/css/orange-white.css
|
90
|
+
- assets/css/style.css
|
91
|
+
- assets/images/header.png
|
92
|
+
- assets/images/headerimage.png
|
93
|
+
- assets/images/icon_key_white.gif
|
94
|
+
- assets/images/ieee_mb_black.png
|
95
|
+
- assets/images/ieee_mb_white.png
|
96
|
+
- assets/images/logo.png
|
97
|
+
- assets/images/social/facebook-icon.png
|
98
|
+
- assets/images/social/gplus-icon.png
|
99
|
+
- assets/images/social/linkedin-icon.png
|
100
|
+
- assets/images/social/rss-icon.png
|
101
|
+
- assets/images/social/twitter-icon.png
|
102
|
+
- assets/images/social/youtube-icon.png
|
103
|
+
homepage: https://github.com/mgeekin/ieee-students-branch-jekyll-theme
|
104
|
+
licenses:
|
105
|
+
- MIT
|
106
|
+
metadata: {}
|
107
|
+
post_install_message:
|
108
|
+
rdoc_options: []
|
109
|
+
require_paths:
|
110
|
+
- lib
|
111
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
112
|
+
requirements:
|
113
|
+
- - ">="
|
114
|
+
- !ruby/object:Gem::Version
|
115
|
+
version: '0'
|
116
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
117
|
+
requirements:
|
118
|
+
- - ">="
|
119
|
+
- !ruby/object:Gem::Version
|
120
|
+
version: '0'
|
121
|
+
requirements: []
|
122
|
+
rubyforge_project:
|
123
|
+
rubygems_version: 2.7.3
|
124
|
+
signing_key:
|
125
|
+
specification_version: 4
|
126
|
+
summary: 'This is jekyll theme template designed for IEEE Students Branch website
|
127
|
+
hosted by institute and colleges. create markdown files contact.md submitpaper.md
|
128
|
+
… in the root directory and change theme in gem file as `theme:conference-mgeek.in-jekyll-theme`
|
129
|
+
© 2018 http://mgeek.in . add topmenu: true, to add pages in navigation, add
|
130
|
+
submenu: true for submenu pages and also add submenutype: <parent topmenu>, also
|
131
|
+
specify order: <number> for all pages in yaml'
|
132
|
+
test_files: []
|