isp-theme 0.10.0 → 0.11.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ecfe2099b6f807bdce98baeb4c75807bbda98396b06e722ec1eaf29a2a56d97b
4
- data.tar.gz: 56e57949703813b79651c3e26b363b4987746dbea7db4301ea11b90e63e17e33
3
+ metadata.gz: 58c76ae0336e8a66cbaa4c7807b61e7928cecb41920ab0aa155078ade8dbc14f
4
+ data.tar.gz: ecbb4200d956e7b48aaee8ddd510754e7f223ee2101c86c32a55fbfc9a092d19
5
5
  SHA512:
6
- metadata.gz: 0aeff52abc1c1e2dec7cdb0cdd58ca8e85dd68e81e53ba44457fd0fcc5420b761af378664b09e5fd59b9b353fa7eb58a876aae2abef6954fe38fdc1a48fe380d
7
- data.tar.gz: 6646845e1403fb812ee43002f34220d271882ff487f3121b2b898bd6a7e60f30d85c875747af589d89236a2114c0d478714e54b11592d1c1c2ad5a5ab0d769b0
6
+ metadata.gz: 7ad3ca861dd8aa3672f8d277dda931c49a56cce6835f87827bd3bd69b292bd0341316efead9628c71d5eb87ca2b7b9e32cef44e11b344bb6313192c2c028135f
7
+ data.tar.gz: ab58a1979122263b5af4691ea56fa93f26337618380afefee3217de36a0cba207528be01acb4d0818ed6a83b5a3e58f1af69ba2d03afa31423fcb6f375796a34
data/README.md CHANGED
@@ -1,12 +1,9 @@
1
- # Moved to github
2
- See [here](https://github.com/Miterion/isp-theme) for current development
3
-
4
-
5
-
6
1
  # isp-theme
7
2
 
8
3
  Welcome to your new Jekyll theme! In this directory, you'll find the files you need to be able to package up your theme into a gem. Put your layouts in `_layouts`, your includes in `_includes` and your sass in `_sass`. To experiment with this code, add some sample content and run `bundle exec jekyll serve` – this directory is setup just like a Jekyll site!
9
4
 
5
+ For a example page see [here](https://github.com/Miterion/isp-site-template).
6
+
10
7
  ## Installation
11
8
 
12
9
  Add this line to your Jekyll site's `Gemfile`:
@@ -1,15 +1,20 @@
1
1
  <aside class="contact">
2
- <a href="http://www.informatik.tu-darmstadt.de">
3
- <img class="institutelogo" src="{{ "/assets/img/fb-logo.png" | relative_url }}" >
4
- </a>
2
+ <a href="{{site.contact.institutelogo.url}}">
3
+ <img class="institutelogo" src="{{site.contact.institutelogo.path | absolute_url }}" >
4
+ </a>
5
5
  <h1> Kontakt</h1>
6
- <p class="colored"><b>Dekan</b></p>
7
- <p>Professor Dr. rer. nat. Max Mühlhäuser</p>
8
- <p>S2|02 D103<br>
9
- Hochschulstr. 10<br>
10
- 64289 Darmstadt</p>
11
- <p>Technische Universität
12
- Darmstadt</p>
13
- <i class="fa fa-phone" aria-hidden="true"></i>+49 6151 16-25500/-25501<br>
14
- <i class="fa fa-envelope-o" aria-hidden="true"></i> <u>dekanat(a-t)informatik.tu-darmstadt.de</u>
6
+ <p class="colored"><b>{{site.contact.header}}</b></p>
7
+ <p>{{ site.contact.person }}</p>
8
+ <p>{{ site.contact.room }}<br>
9
+ {{ site.contact.street }}<br>
10
+ {{ site.contact.postal_code }} {{ site.contact.city }}</p>
11
+ <p>Technische Universität Darmstadt</p>
12
+ <i class="fa fa-phone" aria-hidden="true"></i>{{ site.contact.phone }}<br>
13
+ <i class="fa fa-envelope-o" aria-hidden="true"></i> <u>{{ site.contact.email }}</u>
14
+ {% for logo in site.contact.logos %}
15
+ <h1>{{logo.title}}</h1>
16
+ <a href="{{logo.url}}">
17
+ <img class="institutelogo" src="{{ logo.path | absolute_url }}" >
18
+ </a>
19
+ {% endfor %}
15
20
  </aside>
data/_includes/menu.html CHANGED
@@ -1,3 +1,10 @@
1
1
  <nav class="sidenavigation">
2
- <h1> <a href="{{ page.sidenav.mainurl }}"> {{ page.sidenav.mainname }} </a></h1>
2
+ <h1> <a href="{{ page.sidenav.mainurl }}"> {{ page.sidenav.mainname }} </a></h1>
3
+ <ul>
4
+ {% for link in page.sidenav.links %}
5
+ <li>
6
+ {% assign link_url = link.url | append: ".html" %}
7
+ <a class="{% if page.url == link.url or page.url == link_url %}active{% endif %}" href="{{link.url}}">{{link.name}}</a></li>
8
+ {% endfor %}
9
+ </ul>
3
10
  </nav>
@@ -6,8 +6,10 @@
6
6
  <body>
7
7
  <div class="page">
8
8
  {% include header.html %}
9
+ <nav class="sidenavigation">
10
+ {% include menu.html %}
11
+ </nav>
9
12
  <div class="content">
10
- {% include menu.html %}
11
13
  <div class="center-content">
12
14
  {{ content }}
13
15
  </div>
data/_sass/isp/_base.scss CHANGED
@@ -118,7 +118,6 @@ a {
118
118
  * Blockquotes
119
119
  */
120
120
  blockquote {
121
- color: $grey-color;
122
121
  border-left: 4px solid $grey-color-light;
123
122
  padding-left: $spacing-unit / 2;
124
123
  @include relative-font-size(1.125);
@@ -21,6 +21,12 @@
21
21
  font-weight: 700;
22
22
  }
23
23
 
24
+ .mainnavigation::after {
25
+ content: "";
26
+ display: block;
27
+ clear: both;
28
+ }
29
+
24
30
  .mainmenu {
25
31
  margin-left: 0;
26
32
  margin-top: 7px;
@@ -54,7 +60,8 @@
54
60
  background: white;
55
61
  position: absolute;
56
62
  right: 0;
57
- top: 44px;
63
+ top: 50%;
64
+ transform: translateY(-50%);
58
65
  }
59
66
 
60
67
  .breadcrumb {
@@ -91,9 +98,37 @@
91
98
  border-bottom: 1px solid #E5E5E5;
92
99
  font-weight: bold !important;
93
100
  }
101
+ a {
102
+ &:hover {
103
+ text-decoration: none;
104
+ }
94
105
 
95
- a:visited {
96
- color: $brand-color;
106
+ &:visited {
107
+ color: $brand-color;
108
+ }
109
+ }
110
+
111
+ ul {
112
+ list-style-type: none;
113
+ padding: 0;
114
+ margin-left: 0;
115
+ border-bottom: 1px solid #E5E5E5;
116
+
117
+ li a {
118
+ background-color: #E9EAF1;
119
+ font-weight: 700;
120
+ padding: 5px 8px;
121
+ border-bottom: 1px solid #fff;
122
+ min-width: 166px;
123
+ width: 100%;
124
+ display: inline-block;
125
+ box-sizing: border-box;
126
+
127
+ &:hover, &.active {
128
+ background-color: #fff;
129
+ text-decoration: none;
130
+ }
131
+ }
97
132
  }
98
133
  }
99
134
 
@@ -110,6 +145,12 @@
110
145
  }
111
146
  }
112
147
 
148
+ .content::after {
149
+ content: "";
150
+ clear: both;
151
+ display: block;
152
+ }
153
+
113
154
  .contact {
114
155
  @extend .float-left;
115
156
 
@@ -320,7 +361,7 @@ footer {
320
361
  a {
321
362
  color: #333;
322
363
  &:hover {
323
- color: $brand-color;
364
+ color: $brand-color;
324
365
  }
325
366
  }
326
367
  }
@@ -0,0 +1,36 @@
1
+ <svg id="b898880a-bf39-4c28-97e7-116d8c216565" data-name="Ebene 1" xmlns="http://www.w3.org/2000/svg" width="135.86139" height="41" viewBox="0 0 135.86139 41">
2
+ <defs>
3
+ <style>
4
+ .c3c9b207-93a3-4e55-964e-9bd97fb555b3 {
5
+ fill: none;
6
+ }
7
+
8
+ .\31 66b73ff-e487-4e50-bd99-2703395be93b {
9
+ fill: #004f73;
10
+ }
11
+
12
+ .d9eb2d5e-81f3-4b53-b78e-6bf8a4511452 {
13
+ fill: gray;
14
+ }
15
+ </style>
16
+ </defs>
17
+ <title>FB-Informatik-Logo_DE_written-out_rgb</title>
18
+ <rect class="c3c9b207-93a3-4e55-964e-9bd97fb555b3" x="30.77536" y="10.2423" width="10.25475" height="20.5095"/>
19
+ <g>
20
+ <polygon class="166b73ff-e487-4e50-bd99-2703395be93b" points="14.193 22.375 12.314 20.497 14.193 18.619 14.193 14.18 18.13 14.18 18.13 10.242 10.255 10.242 10.255 17.708 7.466 20.497 10.255 23.286 10.255 30.752 18.13 30.752 18.13 26.814 14.193 26.814 14.193 22.375"/>
21
+ <polygon class="166b73ff-e487-4e50-bd99-2703395be93b" points="30.775 17.708 30.775 10.242 22.9 10.242 22.9 14.18 26.837 14.18 26.837 18.619 28.716 20.497 26.837 22.375 26.837 26.814 22.9 26.814 22.9 30.752 30.775 30.752 30.775 23.286 33.565 20.497 30.775 17.708"/>
22
+ <rect class="d9eb2d5e-81f3-4b53-b78e-6bf8a4511452" x="17.78145" y="17.76352" width="5.46711" height="5.46711" transform="translate(20.50233 -8.50285) rotate(45)"/>
23
+ </g>
24
+ <g>
25
+ <path d="M42.83017,26.81383H41.03V14.18207h1.80014Z"/>
26
+ <path d="M47.14818,19.01161a3.64854,3.64854,0,0,1,3.18106-1.62875A3.10158,3.10158,0,0,1,53.53,19.63672a9.73216,9.73216,0,0,1,.2466,2.85926v4.31785H52.05293v-4.1662a8.12206,8.12206,0,0,0-.15166-2.29209,1.91352,1.91352,0,0,0-1.95055-1.51408,2.54682,2.54682,0,0,0-2.44251,1.91233,8.53315,8.53315,0,0,0-.20837,2.67061v3.38943H45.57615V22.23089c-.0185-1.969-.05672-3.52259-.11344-4.67788h1.609Z"/>
27
+ <path d="M61.58254,14.69376a4.43315,4.43315,0,0,0-.87171-.11344,1.41447,1.41447,0,0,0-1.49559.94692,6.20992,6.20992,0,0,0-.15166,1.609v.455h2.519v1.34394h-2.519v7.87866H57.33989V18.93517H55.16247V17.59123h2.17742V17.156a5.56,5.56,0,0,1,.49319-2.76554,2.64406,2.64406,0,0,1,2.49923-1.26873,4.904,4.904,0,0,1,1.25023.15166Z"/>
28
+ <path d="M71.92834,22.26911a4.74452,4.74452,0,1,1-9.48768-.05672,4.74756,4.74756,0,1,1,9.48768.05672Zm-7.66906-.07644c0,2.064,1.212,3.50409,2.93447,3.50409,1.68546,0,2.9172-1.4586,2.9172-3.42765,0-2.1207-1.212-3.599-2.9172-3.599C65.48979,18.67008,64.25928,20.14841,64.25928,22.19267Z"/>
29
+ <path d="M75.3542,17.553l.09494,1.64848A2.92159,2.92159,0,0,1,79.00872,17.553v1.572a1.97182,1.97182,0,0,0-.81376-.17015A2.49336,2.49336,0,0,0,75.80917,20.887a6.57411,6.57411,0,0,0-.20837,2.29086v3.636H73.87711V21.17054c0-.68183-.03822-1.89384-.11344-3.61753Z"/>
30
+ <path d="M82.424,19.04983a3.095,3.095,0,0,1,2.916-1.667,2.64316,2.64316,0,0,1,2.72732,1.85562,3.22062,3.22062,0,0,1,3.04913-1.85562,2.81613,2.81613,0,0,1,2.85926,2.00727,8.71847,8.71847,0,0,1,.24659,2.55718v4.86652H92.49862V22.26911a8.3213,8.3213,0,0,0-.15165-2.14043,1.56216,1.56216,0,0,0-1.59053-1.28722A2.36677,2.36677,0,0,0,88.579,20.75379a6.81553,6.81553,0,0,0-.17139,2.14044v3.9196H86.68518V22.06074a7.9138,7.9138,0,0,0-.13316-1.95056,1.57624,1.57624,0,0,0-1.53382-1.26872,2.40366,2.40366,0,0,0-2.17742,1.66574,5.10345,5.10345,0,0,0-.26508,2.21564v4.091H80.852V21.58728c0-1.43887-.03823-2.519-.11344-4.03427H82.3291Z"/>
31
+ <path d="M97.22858,18.23484a5.908,5.908,0,0,1,3.10462-.852,3.41446,3.41446,0,0,1,3.31421,1.704,5.87806,5.87806,0,0,1,.37976,2.65211v1.93083c0,1.44011.037,2.424.0937,3.14407h-1.572c-.01849-.36-.01849-.53018-.01849-.73855s0-.28358.01849-.852A3.314,3.314,0,0,1,99.44423,26.947c-1.95056,0-3.22052-1.09857-3.22052-2.784,0-1.95056,1.74342-3.04913,4.848-3.04913.36,0,.70156.01849,1.28846.05672-.0185-1.59053-.75705-2.32908-2.31059-2.32908a4.4942,4.4942,0,0,0-2.72732.9087Zm4.24141,4.1477c-2.27236,0-3.42765.5869-3.42765,1.76068,0,.85322.73855,1.44011,1.78041,1.44011a2.46437,2.46437,0,0,0,2.29085-1.34517,3.828,3.828,0,0,0,.28482-1.7989A7.12625,7.12625,0,0,0,101.47,22.38254Z"/>
32
+ <path d="M109.145,17.59123h2.44375v1.34394H109.145v3.63725a9.73627,9.73627,0,0,0,.09494,1.8174,1.32376,1.32376,0,0,0,1.42038,1.07884,2.48771,2.48771,0,0,0,1.11707-.28358v1.47709a5.24119,5.24119,0,0,1-1.59053.26509,2.57445,2.57445,0,0,1-2.40552-1.212,5.71656,5.71656,0,0,1-.35879-2.63239v-4.1477h-2.14043V17.59123h2.14043v-2.1207l1.72245-.5869Z"/>
33
+ <path d="M115.38748,15.33737h-1.87411V13.44353h1.87411Zm-.03822,11.47646H113.6268V17.553h1.72246Z"/>
34
+ <path d="M119.82616,19.71194l-.03822.53017.01973.43647c-.03822.54867-.03822.54867-.03822.73855.15165-.18988.20837-.24659.3403-.39825.03822-.05672.13316-.13193.24659-.26509l.20837-.18987,3.01091-3.01091h2.31058l-4.31785,4.091,4.90474,5.16983h-2.424L120.905,23.40467c-.09371-.11343-.43524-.53017-.6621-.79526a2.465,2.465,0,0,0-.2466-.3218,1.91921,1.91921,0,0,0-.22686-.2466c.01849.15166.03822.60662.05671,1.40189v3.37093h-1.72369V13.17844h1.72369Z"/>
35
+ </g>
36
+ </svg>
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: isp-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.0
4
+ version: 0.11.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Heiko Carrasco
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-05-04 00:00:00.000000000 Z
11
+ date: 2019-10-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -16,28 +16,28 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '3.4'
19
+ version: '4.0'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '3.4'
26
+ version: '4.0'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: bundler
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: '1.12'
33
+ version: '2.0'
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: '1.12'
40
+ version: '2.0'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: rake
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -54,7 +54,7 @@ dependencies:
54
54
  version: '10.0'
55
55
  description:
56
56
  email:
57
- - hc82bydi@rbg.informatik.tu-darmstadt.de
57
+ - heiko@rbg.informatik.tu-darmstadt.de
58
58
  executables: []
59
59
  extensions: []
60
60
  extra_rdoc_files: []
@@ -140,11 +140,11 @@ files:
140
140
  - assets/fonts/font-awesome/fontawesome-webfont.ttf
141
141
  - assets/fonts/font-awesome/fontawesome-webfont.woff
142
142
  - assets/fonts/font-awesome/fontawesome-webfont.woff2
143
- - assets/img/fb-logo.png
143
+ - assets/img/fb-logo.svg
144
144
  - assets/img/header.png
145
145
  - assets/img/tudlogo.png
146
146
  - assets/main.scss
147
- homepage: https://www.isp.informatik.tu-darmstadt.de
147
+ homepage: ''
148
148
  licenses:
149
149
  - MIT
150
150
  metadata: {}
@@ -163,8 +163,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
163
163
  - !ruby/object:Gem::Version
164
164
  version: '0'
165
165
  requirements: []
166
- rubyforge_project:
167
- rubygems_version: 2.7.6
166
+ rubygems_version: 3.0.6
168
167
  signing_key:
169
168
  specification_version: 4
170
169
  summary: Small TU Darmstadt Theme for ISP Purposes
Binary file