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.
Files changed (51) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +6 -4
  3. data/_data/partners.csv +13 -0
  4. data/_data/team/abbott.yml +10 -0
  5. data/_data/team/bingham.yml +18 -0
  6. data/_data/team/blumberg.yml +10 -0
  7. data/_data/team/brown.yml +2 -2
  8. data/_data/team/dawa.yml +18 -0
  9. data/_data/team/dushoff.yml +1 -1
  10. data/_data/team/hladish.yml +1 -1
  11. data/_data/team/kombe.yml +18 -0
  12. data/_data/team/nyamai.yml +2 -2
  13. data/_data/team/omondi.yml +18 -0
  14. data/_data/team/pearson.yml +3 -3
  15. data/_data/team/pulliam.yml +1 -1
  16. data/_data/team/reiner.yml +2 -1
  17. data/_data/team/scott.yml +2 -1
  18. data/_data/team/vanschalkwyk.yml +3 -3
  19. data/_includes/alert +13 -0
  20. data/_includes/jsblock.html +12 -0
  21. data/_includes/navStructure.html +5 -5
  22. data/_includes/partners.html +12 -66
  23. data/_includes/talk.html +1 -1
  24. data/_layouts/clinic.liquid +19 -37
  25. data/_layouts/main.liquid +10 -17
  26. data/_layouts/medph.page.liquid +37 -56
  27. data/_layouts/page.liquid +8 -17
  28. data/_layouts/people.page.liquid +19 -20
  29. data/_layouts/profile.liquid +23 -40
  30. data/_layouts/talk.liquid +22 -38
  31. metadata +11 -22
  32. data/_layouts/example.liquid +0 -601
  33. data/assets/img/portfolio/800x500/work1.png +0 -0
  34. data/assets/img/portfolio/800x500/work2.png +0 -0
  35. data/assets/img/portfolio/800x500/work3.png +0 -0
  36. data/assets/img/portfolio/800x500/work4.png +0 -0
  37. data/assets/img/portfolio/800x500/work5.png +0 -0
  38. data/assets/img/portfolio/800x500/work6.png +0 -0
  39. data/assets/img/portfolio/800x500/work7.png +0 -0
  40. data/assets/img/portfolio/800x500/work8.png +0 -0
  41. data/assets/img/portfolio/800x800/work1.png +0 -0
  42. data/assets/img/portfolio/800x800/work2.png +0 -0
  43. data/assets/img/portfolio/800x800/work3.png +0 -0
  44. data/assets/img/portfolio/800x800/work4.png +0 -0
  45. data/assets/img/portfolio/800x800/work5.png +0 -0
  46. data/assets/img/portfolio/800x800/work6.png +0 -0
  47. data/assets/img/portfolio/800x800/work7.png +0 -0
  48. data/assets/img/portfolio/800x800/work8.png +0 -0
  49. data/assets/img/portfolio/single/bicycle.jpg +0 -0
  50. data/assets/img/portfolio/single/blurred_lines.jpg +0 -0
  51. 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
- <body>
5
- <!-- WRAPPER -->
6
- <div class="wrapper">
7
- {%include navbar.html%}
8
- {%include header.html%}
9
- {% if page.alertmsg contains "" %}
10
- <div class="alert alert-{{page.alerttype}} alert-dismissible" role="alert">
11
- <button type="button" class="close" data-dismiss="alert"><span aria-hidden="true">&times;</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 }}
@@ -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 = {{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
- <!-- MAIN CONTENT -->
19
- <div id="main_content_wrap" class="outer">
20
- <section id="main_content" class="inner">
21
- {%include profile.html %}
22
- {{content}}
23
- </section>
24
- </div>
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>
@@ -1,44 +1,27 @@
1
1
  <!DOCTYPE html>
2
2
  <html lang="en" class="fullscreen">
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
- {% if page.alertmsg contains "" %}
13
- <div class="alert alert-{{page.alerttype}} alert-dismissible" role="alert">
14
- <button type="button" class="close" data-dismiss="alert"><span aria-hidden="true">&times;</span><span class="sr-only">Close</span></button>
15
- <div class="container padding-left=0px padding-right=0px">
16
- <p margin="0px">
17
- {{ page.alertmsg }}
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
- <!-- END PAGE CONTENT -->
30
- {% include footer.html %}
31
- </div>
32
- <!-- END WRAPPER -->
33
- <!-- JAVASCRIPTS -->
34
- <script src="{{site.url}}/assets/js/jquery-2.1.1.min.js"></script>
35
- <script src="{{site.url}}/assets/js/bootstrap.min.js"></script>
36
- <script src="{{site.url}}/assets/js/plugins/slick/slick.min.js"></script>
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
- <body>
5
- <!-- WRAPPER -->
6
- <div class="wrapper">
7
- {%include navbar.html%}
8
- {%include clinicNavbar.html%}
9
- {%include header.html%}
10
- {% if page.alertmsg contains "" %}
11
- <div class="alert alert-{{page.alerttype}} alert-dismissible" role="alert">
12
- <button type="button" class="close" data-dismiss="alert"><span aria-hidden="true">&times;</span><span class="sr-only">Close</span></button>
13
- <div class="container padding-left=0px padding-right=0px">
14
- <p style="font-size:16px; margin:0px">
15
- {{ page.alertmsg }}
16
- </p>
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
- <!-- END WRAPPER -->
32
- <!-- JAVASCRIPTS -->
33
- <script src="{{ site.url }}/assets/js/jquery-2.1.1.min.js"></script>
34
- <script src="{{ site.url }}/assets/js/bootstrap.min.js"></script>
35
- <script src="{{ site.url }}/assets/js/plugins/slick/slick.min.js"></script>
36
- <script src="{{ site.url }}/assets/js/plugins/easing/jquery.easing.min.js"></script>
37
- <script src="{{ site.url }}/assets/js/plugins/scrollto/jquery.localscroll-1.2.7-min.js"></script>
38
- <script src="{{ site.url }}/assets/js/plugins/scrollto/jquery.scrollTo-1.4.3.1-min.js"></script>
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.0
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-04-30 00:00:00.000000000 Z
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