jekyll-theme-ici3d 0.1.0 → 0.1.2
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 +4 -4
- data/README.md +6 -4
- data/_data/partners.csv +13 -0
- data/_data/team/abbott.yml +10 -0
- data/_data/team/bingham.yml +18 -0
- data/_data/team/blumberg.yml +10 -0
- data/_data/team/brown.yml +2 -2
- data/_data/team/dawa.yml +18 -0
- data/_data/team/dushoff.yml +1 -1
- data/_data/team/hladish.yml +1 -1
- data/_data/team/kombe.yml +18 -0
- data/_data/team/nyamai.yml +2 -2
- data/_data/team/omondi.yml +18 -0
- data/_data/team/pearson.yml +3 -3
- data/_data/team/pulliam.yml +1 -1
- data/_data/team/reiner.yml +2 -1
- data/_data/team/scott.yml +2 -1
- data/_data/team/vanschalkwyk.yml +3 -3
- data/_includes/alert +13 -0
- data/_includes/jsblock.html +12 -0
- data/_includes/navStructure.html +5 -5
- data/_includes/partners.html +12 -66
- data/_includes/talk.html +1 -1
- data/_layouts/clinic.liquid +19 -37
- data/_layouts/main.liquid +10 -17
- data/_layouts/medph.page.liquid +37 -56
- data/_layouts/page.liquid +8 -17
- data/_layouts/people.page.liquid +19 -20
- data/_layouts/profile.liquid +23 -40
- data/_layouts/talk.liquid +22 -38
- metadata +11 -22
- data/_layouts/example.liquid +0 -601
- data/assets/img/portfolio/800x500/work1.png +0 -0
- data/assets/img/portfolio/800x500/work2.png +0 -0
- data/assets/img/portfolio/800x500/work3.png +0 -0
- data/assets/img/portfolio/800x500/work4.png +0 -0
- data/assets/img/portfolio/800x500/work5.png +0 -0
- data/assets/img/portfolio/800x500/work6.png +0 -0
- data/assets/img/portfolio/800x500/work7.png +0 -0
- data/assets/img/portfolio/800x500/work8.png +0 -0
- data/assets/img/portfolio/800x800/work1.png +0 -0
- data/assets/img/portfolio/800x800/work2.png +0 -0
- data/assets/img/portfolio/800x800/work3.png +0 -0
- data/assets/img/portfolio/800x800/work4.png +0 -0
- data/assets/img/portfolio/800x800/work5.png +0 -0
- data/assets/img/portfolio/800x800/work6.png +0 -0
- data/assets/img/portfolio/800x800/work7.png +0 -0
- data/assets/img/portfolio/800x800/work8.png +0 -0
- data/assets/img/portfolio/single/bicycle.jpg +0 -0
- data/assets/img/portfolio/single/blurred_lines.jpg +0 -0
- data/assets/img/portfolio/single/edge.jpg +0 -0
data/_layouts/page.liquid
CHANGED
@@ -1,22 +1,13 @@
|
|
1
1
|
<!DOCTYPE html>
|
2
2
|
<html lang="en" class="fullscreen">
|
3
|
-
{%include head.html%}
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
<button type="button" class="close" data-dismiss="alert"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
|
12
|
-
<div class="container padding-left=0px padding-right=0px">
|
13
|
-
<p style="font-size:16px; margin:0px">
|
14
|
-
{{ page.alertmsg }}
|
15
|
-
</p>
|
16
|
-
</div>
|
17
|
-
</div>
|
18
|
-
{%endif%}
|
19
|
-
<!-- PAGE CONTENT -->
|
3
|
+
{% include head.html %}
|
4
|
+
<body>
|
5
|
+
<!-- WRAPPER -->
|
6
|
+
<div class="wrapper">
|
7
|
+
{% include navbar.html %}
|
8
|
+
{% include header.html %}
|
9
|
+
{% include alert alerttype=page.alerttype alertmsg=page.alertmsg %}
|
10
|
+
<!-- PAGE CONTENT -->
|
20
11
|
<div class="page-content">
|
21
12
|
<div class="container">
|
22
13
|
{{ content }}
|
data/_layouts/people.page.liquid
CHANGED
@@ -1,27 +1,26 @@
|
|
1
|
-
{% capture name%}{{page.first_name}} {{page.last_name}}{%endcapture%}
|
1
|
+
{% capture name %}{{page.first_name}} {{page.last_name}}{% endcapture %}
|
2
2
|
|
3
|
-
{% capture title%}{{name}}{% if page.phd == true%}, PhD{%endif%}{%endcapture%}
|
3
|
+
{% capture title %}{{name}}{% if page.phd == true %}, PhD{% endif %}{% endcapture %}
|
4
4
|
|
5
|
-
{% assign page.title =
|
6
|
-
|
7
|
-
{%if page.image_src contains "."%}
|
8
|
-
{% capture img_src%} ../images/{{page.image_src}} {%endcapture%}
|
9
|
-
{%else%}
|
10
|
-
{%assign img_src = "../images/transmission.png"%}
|
11
|
-
{%endif%}
|
5
|
+
{% assign page.title = title %}
|
12
6
|
|
7
|
+
{% if page.image_src contains "." %}
|
8
|
+
{% capture img_src %}../images/{{ page.image_src }}{% endcapture %}
|
9
|
+
{% else %}
|
10
|
+
{% assign img_src="../images/transmission.png" %}
|
11
|
+
{% endif %}
|
13
12
|
<!DOCTYPE html>
|
14
13
|
<html>
|
15
|
-
{%include head.html%}
|
14
|
+
{% include head.html %}
|
16
15
|
<body>
|
17
|
-
{%include header.html%}
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
{%include profile.html %}
|
22
|
-
{{content}}
|
23
|
-
|
24
|
-
|
25
|
-
{%include footer.html %}
|
16
|
+
{% include header.html %}
|
17
|
+
<!-- MAIN CONTENT -->
|
18
|
+
<div id="main_content_wrap" class="outer">
|
19
|
+
<section id="main_content" class="inner">
|
20
|
+
{% include profile.html %}
|
21
|
+
{{ content }}
|
22
|
+
</section>
|
23
|
+
</div>
|
24
|
+
{% include footer.html %}
|
26
25
|
</body>
|
27
|
-
</html>
|
26
|
+
</html>
|
data/_layouts/profile.liquid
CHANGED
@@ -1,44 +1,27 @@
|
|
1
1
|
<!DOCTYPE html>
|
2
2
|
<html lang="en" class="fullscreen">
|
3
|
-
{%include head.html%}
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
</p>
|
19
|
-
</div>
|
20
|
-
</div>
|
21
|
-
{%endif%}
|
22
|
-
<!-- PAGE CONTENT -->
|
23
|
-
<div class="page-content">
|
24
|
-
<div class="container">
|
25
|
-
{% include profile.html %}
|
26
|
-
{{content}}
|
27
|
-
</div>
|
3
|
+
{% include head.html %}
|
4
|
+
<body>
|
5
|
+
<!-- WRAPPER -->
|
6
|
+
<div class="wrapper">
|
7
|
+
{% include navbar.html %}
|
8
|
+
{% if site.title contains "MMED" or site.title contains "DAIDD" %}
|
9
|
+
{% include clinicNavbar.html %}
|
10
|
+
{% include header.html %}
|
11
|
+
{% endif %}
|
12
|
+
{% include alert alerttype=page.alerttype alertmsg=page.alertmsg %}
|
13
|
+
<!-- PAGE CONTENT -->
|
14
|
+
<div class="page-content">
|
15
|
+
<div class="container">
|
16
|
+
{% include profile.html %}
|
17
|
+
{{ content }}
|
28
18
|
</div>
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
<script src="{{site.url}}/assets/js/plugins/easing/jquery.easing.min.js"></script>
|
38
|
-
<script src="{{site.url}}/assets/js/plugins/scrollto/jquery.localscroll-1.2.7-min.js"></script>
|
39
|
-
<script src="{{site.url}}/assets/js/plugins/scrollto/jquery.scrollTo-1.4.3.1-min.js"></script>
|
40
|
-
<script src="{{site.url}}/assets/js/plugins/autohidingnavbar/jquery.bootstrap-autohidingnavbar.min.js"></script>
|
41
|
-
<script src="{{site.url}}/assets/js/repute-scripts.js"></script>
|
42
|
-
|
43
|
-
</body>
|
19
|
+
</div>
|
20
|
+
<!-- END PAGE CONTENT -->
|
21
|
+
{% include footer.html %}
|
22
|
+
</div>
|
23
|
+
<!-- END WRAPPER -->
|
24
|
+
<!-- JAVASCRIPTS -->
|
25
|
+
{% include jsblock.html %}
|
26
|
+
</body>
|
44
27
|
</html>
|
data/_layouts/talk.liquid
CHANGED
@@ -1,42 +1,26 @@
|
|
1
1
|
<!DOCTYPE html>
|
2
2
|
<html lang="en" class="fullscreen">
|
3
|
-
{%include head.html%}
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
</div>
|
18
|
-
</div>
|
19
|
-
{%endif%}
|
20
|
-
<!-- PAGE CONTENT -->
|
21
|
-
<div class="page-content">
|
22
|
-
<div class="container">
|
23
|
-
<h1><span style="color: #15378a">{{page.subtitle}}</span></h1>
|
24
|
-
{% include talk.html %}
|
25
|
-
{{ content }}
|
26
|
-
</div>
|
27
|
-
</div>
|
28
|
-
<!-- END PAGE CONTENT -->
|
29
|
-
{% include footer.html %}
|
3
|
+
{% include head.html %}
|
4
|
+
<body>
|
5
|
+
<!-- WRAPPER -->
|
6
|
+
<div class="wrapper">
|
7
|
+
{% include navbar.html %}
|
8
|
+
{% include clinicNavbar.html %}
|
9
|
+
{% include header.html %}
|
10
|
+
{% include alert alerttype=page.alerttype alertmsg=page.alertmsg %}
|
11
|
+
<!-- PAGE CONTENT -->
|
12
|
+
<div class="page-content">
|
13
|
+
<div class="container">
|
14
|
+
<h1><span style="color: #15378a">{{page.subtitle}}</span></h1>
|
15
|
+
{% include talk.html %}
|
16
|
+
{{ content }}
|
30
17
|
</div>
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
<script src="{{ site.url }}/assets/js/plugins/autohidingnavbar/jquery.bootstrap-autohidingnavbar.min.js"></script>
|
40
|
-
<script src="{{ site.url }}/assets/js/repute-scripts.js"></script>
|
41
|
-
</body>
|
18
|
+
</div>
|
19
|
+
<!-- END PAGE CONTENT -->
|
20
|
+
{% include footer.html %}
|
21
|
+
</div>
|
22
|
+
<!-- END WRAPPER -->
|
23
|
+
<!-- JAVASCRIPTS -->
|
24
|
+
{% include jsblock.html %}
|
25
|
+
</body>
|
42
26
|
</html>
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-ici3d
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Carl A. B. Pearson
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-06-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -33,18 +33,23 @@ extra_rdoc_files: []
|
|
33
33
|
files:
|
34
34
|
- LICENSE.txt
|
35
35
|
- README.md
|
36
|
+
- _data/partners.csv
|
36
37
|
- _data/publications/pulliam2012.yml
|
38
|
+
- _data/team/abbott.yml
|
37
39
|
- _data/team/ackley.yml
|
38
40
|
- _data/team/are.yml
|
39
41
|
- _data/team/beauclair.yml
|
40
42
|
- _data/team/bekele.yml
|
41
43
|
- _data/team/bellan.yml
|
44
|
+
- _data/team/bingham.yml
|
45
|
+
- _data/team/blumberg.yml
|
42
46
|
- _data/team/bolton.yml
|
43
47
|
- _data/team/borchering.yml
|
44
48
|
- _data/team/brook.yml
|
45
49
|
- _data/team/brown.yml
|
46
50
|
- _data/team/bruce.yml
|
47
51
|
- _data/team/brucePA.yml
|
52
|
+
- _data/team/dawa.yml
|
48
53
|
- _data/team/deleo.yml
|
49
54
|
- _data/team/delva.yml
|
50
55
|
- _data/team/dushoff.yml
|
@@ -56,6 +61,7 @@ files:
|
|
56
61
|
- _data/team/hladish.yml
|
57
62
|
- _data/team/january.yml
|
58
63
|
- _data/team/kassanjee.yml
|
64
|
+
- _data/team/kombe.yml
|
59
65
|
- _data/team/li.yml
|
60
66
|
- _data/team/lord.yml
|
61
67
|
- _data/team/marx.yml
|
@@ -70,6 +76,7 @@ files:
|
|
70
76
|
- _data/team/nondi.yml
|
71
77
|
- _data/team/nyamai.yml
|
72
78
|
- _data/team/october.yml
|
79
|
+
- _data/team/omondi.yml
|
73
80
|
- _data/team/paradza.yml
|
74
81
|
- _data/team/pearson.yml
|
75
82
|
- _data/team/porco.yml
|
@@ -94,6 +101,7 @@ files:
|
|
94
101
|
- _includes/MedPH/references.md
|
95
102
|
- _includes/MedPH/schedule.md
|
96
103
|
- _includes/MedPH/scheduleStandard.md
|
104
|
+
- _includes/alert
|
97
105
|
- _includes/bottomTable.html
|
98
106
|
- _includes/centerTable.html
|
99
107
|
- _includes/clinicNavbar.html
|
@@ -104,6 +112,7 @@ files:
|
|
104
112
|
- _includes/header.html
|
105
113
|
- _includes/hero.html
|
106
114
|
- _includes/index.md
|
115
|
+
- _includes/jsblock.html
|
107
116
|
- _includes/mission.html
|
108
117
|
- _includes/navStructure.html
|
109
118
|
- _includes/navbar.html
|
@@ -117,7 +126,6 @@ files:
|
|
117
126
|
- _includes/topTable.html
|
118
127
|
- _includes/upcoming.html
|
119
128
|
- _layouts/clinic.liquid
|
120
|
-
- _layouts/example.liquid
|
121
129
|
- _layouts/main.liquid
|
122
130
|
- _layouts/medph.page.liquid
|
123
131
|
- _layouts/page.liquid
|
@@ -253,25 +261,6 @@ files:
|
|
253
261
|
- assets/img/partners/UF.png
|
254
262
|
- assets/img/partners/UGA_228.png
|
255
263
|
- assets/img/pattern-geometry.png
|
256
|
-
- assets/img/portfolio/800x500/work1.png
|
257
|
-
- assets/img/portfolio/800x500/work2.png
|
258
|
-
- assets/img/portfolio/800x500/work3.png
|
259
|
-
- assets/img/portfolio/800x500/work4.png
|
260
|
-
- assets/img/portfolio/800x500/work5.png
|
261
|
-
- assets/img/portfolio/800x500/work6.png
|
262
|
-
- assets/img/portfolio/800x500/work7.png
|
263
|
-
- assets/img/portfolio/800x500/work8.png
|
264
|
-
- assets/img/portfolio/800x800/work1.png
|
265
|
-
- assets/img/portfolio/800x800/work2.png
|
266
|
-
- assets/img/portfolio/800x800/work3.png
|
267
|
-
- assets/img/portfolio/800x800/work4.png
|
268
|
-
- assets/img/portfolio/800x800/work5.png
|
269
|
-
- assets/img/portfolio/800x800/work6.png
|
270
|
-
- assets/img/portfolio/800x800/work7.png
|
271
|
-
- assets/img/portfolio/800x800/work8.png
|
272
|
-
- assets/img/portfolio/single/bicycle.jpg
|
273
|
-
- assets/img/portfolio/single/blurred_lines.jpg
|
274
|
-
- assets/img/portfolio/single/edge.jpg
|
275
264
|
- assets/img/scholars/ackley.jpg
|
276
265
|
- assets/img/scholars/beauclair.jpg
|
277
266
|
- assets/img/scholars/beauclair.png
|