intia-theme 0.1.50 → 0.1.51

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cec1ea04e1cc6720050be7285b05d244e2058d920be8591f4bf66c8f78142494
4
- data.tar.gz: d6d7190cdc4e9d53000b6179b68737f7d59750d8e6f8e1f4a41d844b2010fd90
3
+ metadata.gz: f905a7cf72167a88c327e3a8de72dc0bf24395f73a2786c333f89880a557fb06
4
+ data.tar.gz: 363c862e72c5da5ba2d0a8cd62f5f3c67de986af1624aa608661e84ea7da19e8
5
5
  SHA512:
6
- metadata.gz: c356fedd81ea2eb43105a3337a6c2f6a2f6bb2113752d01b50e5f73d5796b852e64c14062806df2c6ade7fb75e6c79f82651ef4630ff1f9504ccad92af3f5599
7
- data.tar.gz: 397dbfd6df6e4db964502498bcaf9368780f2df9290a8c0633b97b4730b07c29c60649fe82ef3000c81473c370a6e40cb6a275014a629f257e5c62508d3d06ab
6
+ metadata.gz: 929a33259fa68ca2656dc4f52dfd2cc45c676c5b9cc0356ad50c21529d3516b8ca3dceab982fa084e53e097da6dbba217598a5039cf9e7320b819fdf8a098594
7
+ data.tar.gz: 5a650a0bfd4ab32dfca2808849136c632f2d0eb1ab1dac9023c4546109c42199503c5af296ca13752493283c6fc8a126c3aadb179fc57e31a65e532c0dd72746
@@ -42,6 +42,15 @@
42
42
  {% endif %}
43
43
  {% endfor %}
44
44
  {% endif %}
45
+ <div class="navbar-end">
46
+ <div class="navbar-item navbar-search">
47
+ <a id="openSearch">
48
+ <span class="icon">
49
+ <i class="fa-solid icon-search"></i>
50
+ </span>
51
+ </a>
52
+ </div>
53
+ </div>
45
54
  </div>
46
55
  </div>
47
56
  </div>
@@ -80,4 +89,31 @@
80
89
  </div>
81
90
  </section>
82
91
  {% else %}
83
- {% endunless %}
92
+ {% endunless %}
93
+
94
+
95
+ <div id="SearchOverlay" class="overlay">
96
+
97
+ <div class="overlay-content">
98
+
99
+ <div class="field">
100
+ <div id="search-container" class="control">
101
+ <input class="input" type="text" id="search-input" placeholder="Suchbegriff eintippen">
102
+ </div>
103
+ </div>
104
+ <span class="closebtn" id="closeSearch" title="Close Overlay">×</span>
105
+ <ul id="results-container"></ul>
106
+ </div>
107
+ </div>
108
+ <!-- Script pointing to search-script.js -->
109
+ <script src="/assets/js/search.js" type="text/javascript"></script>
110
+
111
+ <!-- Configuration -->
112
+ <script>
113
+ SimpleJekyllSearch({
114
+ searchInput: document.getElementById('search-input'),
115
+ resultsContainer: document.getElementById('results-container'),
116
+ json: '/search.json',
117
+ searchResultTemplate: '<li><a class="search-item" href="{{ site.url }}{url}">{title}</a></li>'
118
+ })
119
+ </script>
data/_sass/_icons.scss CHANGED
@@ -12,3 +12,10 @@
12
12
  background: url(/assets/img/icons/external.svg) no-repeat;
13
13
  transform: rotate(-90deg);
14
14
  }
15
+ .icon-search:before {
16
+ @extend .custom-button-icons;
17
+ background: url(/assets/img/icons/search.svg) no-repeat;
18
+ width: 32px;
19
+ height: 32px;
20
+ filter: invert(35%) sepia(93%) saturate(355%) hue-rotate(124deg) brightness(93%) contrast(88%);
21
+ }
data/_sass/_layout.scss CHANGED
@@ -177,6 +177,75 @@ ul {
177
177
  .navbar-dropdown {
178
178
  display: none;
179
179
  }
180
+ // Search
181
+ .navbar-search{
182
+ padding-left: 0.75rem !important;
183
+ padding-top: 0.5rem !important;
184
+ }
185
+ //Search overlay
186
+ .overlay {
187
+ height: 100%;
188
+ width: 100%;
189
+ display: none;
190
+ position: fixed;
191
+ z-index: 40;
192
+ top: 0;
193
+ left: 0;
194
+ background-color: #1e7d73be;
195
+ }
196
+
197
+ .overlay-content {
198
+ position: relative;
199
+ top: 46%;
200
+ width: 80%;
201
+ margin-top: 30px;
202
+ margin: auto;
203
+ }
204
+
205
+ .overlay .closebtn {
206
+ font-size: 60px;
207
+ cursor: pointer;
208
+ color: white;
209
+ }
210
+
211
+ .overlay .closebtn:hover {
212
+ color: #ccc;
213
+ }
214
+
215
+ .overlay input[type=text] {
216
+ padding: 15px;
217
+ font-size: 17px;
218
+ float: left;
219
+ width: 80%;
220
+ background: white;
221
+ border: 3px solid $primary-dark;
222
+ }
223
+
224
+ .overlay input[type=text]:hover {
225
+ background: #f1f1f1;
226
+ }
227
+
228
+ .overlay button {
229
+ float: left;
230
+ width: 20%;
231
+ padding: 15px;
232
+ background: #ddd;
233
+ font-size: 17px;
234
+ border: none;
235
+ cursor: pointer;
236
+ }
237
+
238
+ .overlay button:hover {
239
+ background: #bbb;
240
+ }
241
+
242
+ .search-item {
243
+ color: white;
244
+ }
245
+ .overlay-content ul{
246
+ list-style-type: none;
247
+ }
248
+
180
249
  .button.is-dark.has-dropdown:hover .navbar-dropdown,
181
250
  .button.is-dark.is-hovered.has-dropdown .navbar-dropdown {
182
251
  display: block;
@@ -1095,6 +1164,9 @@ div.faq {
1095
1164
  color: #ffffff;
1096
1165
  }
1097
1166
 
1167
+
1168
+
1169
+
1098
1170
  // Mobil
1099
1171
 
1100
1172
  @include mobile {
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48">
2
+
3
+ <g transform="matrix(2,0,0,2,0,0)"><path d="M23.41,20.59,18.77,16a10.25,10.25,0,1,0-8.52,4.56,10.14,10.14,0,0,0,5.69-1.74l4.65,4.65a2,2,0,0,0,2.82,0A2,2,0,0,0,23.41,20.59ZM10.25,3A7.25,7.25,0,1,1,3,10.26,7.26,7.26,0,0,1,10.25,3Z" style="fill: #000000"></path></g></svg>
data/assets/js/main.js CHANGED
@@ -47,4 +47,15 @@ window.onscroll = function(ev) {
47
47
  scrollDownArrow.classList.remove("is-hidden");
48
48
  scrollUpArrow.classList.remove("is-hidden");
49
49
  }
50
- };
50
+ };
51
+
52
+ document.getElementById("openSearch").addEventListener("click", openSearch);
53
+ document.getElementById("closeSearch").addEventListener("click", closeSearch);
54
+
55
+ function openSearch() {
56
+ document.getElementById("SearchOverlay").style.display = "block";
57
+ }
58
+
59
+ function closeSearch() {
60
+ document.getElementById("SearchOverlay").style.display = "none";
61
+ }
data/assets/js/search.js CHANGED
@@ -3,4 +3,4 @@
3
3
  * Copyright 2015-2020, Christian Fei
4
4
  * Licensed under the MIT License.
5
5
  */
6
- !function(){"use strict";var f={compile:function(r){return i.template.replace(i.pattern,function(t,e){var n=i.middleware(e,r[e],i.template);return void 0!==n?n:r[e]||t})},setOptions:function(t){i.pattern=t.pattern||i.pattern,i.template=t.template||i.template,"function"==typeof t.middleware&&(i.middleware=t.middleware)}};const i={pattern:/\{(.*?)\}/g,template:"",middleware:function(){}};var n=function(t,e){var n=e.length,r=t.length;if(n<r)return!1;if(r===n)return t===e;t:for(var i=0,o=0;i<r;i++){for(var u=t.charCodeAt(i);o<n;)if(e.charCodeAt(o++)===u)continue t;return!1}return!0},e=new function(){this.matches=function(t,e){return n(e.toLowerCase(),t.toLowerCase())}},r=new function(){this.matches=function(e,t){return!!e&&(e=e.trim().toLowerCase(),(t=t.trim().toLowerCase()).split(" ").filter(function(t){return 0<=e.indexOf(t)}).length===t.split(" ").length)}},d={put:function(t){if(l(t))return a(t);if(function(t){return Boolean(t)&&"[object Array]"===Object.prototype.toString.call(t)}(t))return function(n){const r=[];s();for(let t=0,e=n.length;t<e;t++)l(n[t])&&r.push(a(n[t]));return r}(t);return undefined},clear:s,search:function(t){return t?function(e,n,r,i){const o=[];for(let t=0;t<e.length&&o.length<i.limit;t++){var u=function(t,e,n,r){for(const i in t)if(!function(n,r){for(let t=0,e=r.length;t<e;t++){var i=r[t];if(new RegExp(i).test(n))return!0}return!1}(t[i],r.exclude)&&n.matches(t[i],e))return t}(e[t],n,r,i);u&&o.push(u)}return o}(u,t,c.searchStrategy,c).sort(c.sort):[]},setOptions:function(t){c=t||{},c.fuzzy=t.fuzzy||!1,c.limit=t.limit||10,c.searchStrategy=t.fuzzy?e:r,c.sort=t.sort||o,c.exclude=t.exclude||[]}};function o(){return 0}const u=[];let c={};function s(){return u.length=0,u}function l(t){return Boolean(t)&&"[object Object]"===Object.prototype.toString.call(t)}function a(t){return u.push(t),u}c.fuzzy=!1,c.limit=10,c.searchStrategy=c.fuzzy?e:r,c.sort=o,c.exclude=[];var p={load:function(t,e){const n=window.XMLHttpRequest?new window.XMLHttpRequest:new ActiveXObject("Microsoft.XMLHTTP");n.open("GET",t,!0),n.onreadystatechange=h(n,e),n.send()}};function h(e,n){return function(){if(4===e.readyState&&200===e.status)try{n(null,JSON.parse(e.responseText))}catch(t){n(t,null)}}}var m=function y(t){if(!(e=t)||!("undefined"!=typeof e.required&&e.required instanceof Array))throw new Error("-- OptionsValidator: required options missing");var e;if(!(this instanceof y))return new y(t);const r=t.required;this.getRequiredOptions=function(){return r},this.validate=function(e){const n=[];return r.forEach(function(t){"undefined"==typeof e[t]&&n.push(t)}),n}},w={merge:function(t,e){const n={};for(const r in t)n[r]=t[r],"undefined"!=typeof e[r]&&(n[r]=e[r]);return n},isJSON:function(t){try{return t instanceof Object&&JSON.parse(JSON.stringify(t))?!0:!1}catch(e){return!1}}};!function(t){let i={searchInput:null,resultsContainer:null,json:[],success:Function.prototype,searchResultTemplate:'<li><a href="{url}" title="{desc}">{title}</a></li>',templateMiddleware:Function.prototype,sortMiddleware:function(){return 0},noResultsText:"No results found",limit:10,fuzzy:!1,debounceTime:null,exclude:[]},n;const e=function(t,e){e?(clearTimeout(n),n=setTimeout(t,e)):t.call()};var r=["searchInput","resultsContainer","json"];const o=m({required:r});function u(t){d.put(t),i.searchInput.addEventListener("input",function(t){-1===[13,16,20,37,38,39,40,91].indexOf(t.which)&&(c(),e(function(){l(t.target.value)},i.debounceTime))})}function c(){i.resultsContainer.innerHTML=""}function s(t){i.resultsContainer.innerHTML+=t}function l(t){var e;(e=t)&&0<e.length&&(c(),function(e,n){var r=e.length;if(0===r)return s(i.noResultsText);for(let t=0;t<r;t++)e[t].query=n,s(f.compile(e[t]))}(d.search(t),t))}function a(t){throw new Error("SimpleJekyllSearch --- "+t)}t.SimpleJekyllSearch=function(t){var n;0<o.validate(t).length&&a("You must specify the following required options: "+r),i=w.merge(i,t),f.setOptions({template:i.searchResultTemplate,middleware:i.templateMiddleware}),d.setOptions({fuzzy:i.fuzzy,limit:i.limit,sort:i.sortMiddleware,exclude:i.exclude}),w.isJSON(i.json)?u(i.json):(n=i.json,p.load(n,function(t,e){t&&a("failed to get JSON ("+n+")"),u(e)}));t={search:l};return"function"==typeof i.success&&i.success.call(t),t}}(window)}();
6
+ !function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a="function"==typeof require&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);throw new Error("Cannot find module '"+o+"'")}var f=n[o]={exports:{}};t[o][0].call(f.exports,function(e){var n=t[o][1][e];return s(n?n:e)},f,f.exports,e,t,n,r)}return n[o].exports}for(var i="function"==typeof require&&require,o=0;o<r.length;o++)s(r[o]);return s}({1:[function(require,module,exports){function load(location,callback){var xhr=window.XMLHttpRequest?new XMLHttpRequest:new ActiveXObject("Microsoft.XMLHTTP");xhr.open("GET",location,!0),xhr.onreadystatechange=function(){if(200==xhr.status&&4==xhr.readyState)try{callback(null,JSON.parse(xhr.responseText))}catch(err){callback(err,null)}},xhr.send()}module.exports={load:load}},{}],2:[function(require,module,exports){function put(data){return isObject(data)?addObject(data):isArray(data)?addArray(data):void 0}function clear(){return data.length=0,data}function get(){return data}function isObject(obj){return!!obj&&"[object Object]"==Object.prototype.toString.call(obj)}function isArray(obj){return!!obj&&"[object Array]"==Object.prototype.toString.call(obj)}function addObject(_data){return data.push(_data),data}function addArray(_data){for(var added=[],i=0;i<_data.length;i++)isObject(_data[i])&&added.push(addObject(_data[i]));return added}function search(crit){return crit?findMatches(data,crit,opt.searchStrategy,opt):[]}function setOptions(_opt){opt=_opt||{},opt.fuzzy=_opt.fuzzy||!1,opt.limit=_opt.limit||10,opt.searchStrategy=require(_opt.fuzzy?"./SearchStrategies/FuzzySearchStrategy":"./SearchStrategies/LiteralSearchStrategy")}function findMatches(data,crit,strategy,opt){for(var matches=[],i=0;i<data.length&&matches.length<opt.limit;i++){var match=findMatchesInObject(data[i],crit,strategy,opt);match&&matches.push(match)}return matches}function findMatchesInObject(obj,crit,strategy,opt){for(var key in obj)if(!isExcluded(obj[key],opt.exclude)&&strategy.matches(obj[key],crit))return obj}function isExcluded(term,excludedTerms){var excluded=!1;excludedTerms=excludedTerms||[];for(var i=0;i<excludedTerms.length;i++){var excludedTerm=excludedTerms[i];!excluded&&new RegExp(term).test(excludedTerm)&&(excluded=!0)}return excluded}module.exports={put:put,clear:clear,get:get,search:search,setOptions:setOptions};var data=[],opt={};opt.fuzzy=!1,opt.limit=10,opt.searchStrategy=require(opt.fuzzy?"./SearchStrategies/FuzzySearchStrategy":"./SearchStrategies/LiteralSearchStrategy")},{"./SearchStrategies/FuzzySearchStrategy":3,"./SearchStrategies/LiteralSearchStrategy":4}],3:[function(require,module,exports){function FuzzySearchStrategy(){function fuzzyRegexFromString(string){return new RegExp(string.split("").join(".*?"),"gi")}this.matches=function(string,crit){return"string"!=typeof string?!1:(string=string.trim(),!!fuzzyRegexFromString(crit).test(string))}}module.exports=new FuzzySearchStrategy},{}],4:[function(require,module,exports){function LiteralSearchStrategy(){this.matches=function(string,crit){return"string"!=typeof string?!1:(string=string.trim(),string.toLowerCase().indexOf(crit.toLowerCase())>=0)}}module.exports=new LiteralSearchStrategy},{}],5:[function(require,module,exports){function setOptions(_opt){opt=_opt||{},opt.templatePattern=_opt.templatePattern||/\{(.*?)\}/g}function render(t,data){return t.replace(opt.templatePattern,function(match,prop){return data[prop]||match})}module.exports={render:render,setOptions:setOptions};var opt={};opt.templatePattern=/\{(.*?)\}/g},{}],6:[function(require,module,exports){!function(window,document,undefined){"use strict";function initWithJSON(json){store.put(opt.json),registerInput()}function initWithURL(url){jsonLoader.load(url,function(err,json){err?throwError("failed to get JSON ("+url+")"):(store.put(json),registerInput())})}function throwError(message){throw new Error("SimpleJekyllSearch --- "+message)}function validateOptions(_opt){for(var i=0;i<requiredOptions.length;i++){var req=requiredOptions[i];_opt[req]||throwError("You must specify a "+req)}var ret=_opt;for(var option in opt)ret[option]=_opt[option]||opt[option];return ret}function isJSON(json){try{return json instanceof Object&&JSON.parse(JSON.stringify(json))}catch(e){return!1}}function emptyResultsContainer(){opt.resultsContainer.innerHTML=""}function appendToResultsContainer(text){opt.resultsContainer.innerHTML+=text}function registerInput(){opt.searchInput.addEventListener("keyup",function(e){return 0==e.target.value.length?void emptyResultsContainer():void render(store.search(e.target.value))})}function render(results){if(emptyResultsContainer(),0==results.length)return appendToResultsContainer(opt.noResultsText);for(var i=0;i<results.length;i++)appendToResultsContainer(templater.render(opt.searchResultTemplate,results[i]))}var templater=require("./Templater"),store=require("./Repository"),jsonLoader=require("./JSONLoader"),requiredOptions=["searchInput","resultsContainer","json"],opt={searchInput:null,resultsContainer:null,json:[],searchResultTemplate:'<li><a href="{url}" title="{desc}">{title}</a></li>',noResultsText:"No results found",limit:10,fuzzy:!1,exclude:[]};window.SimpleJekyllSearch=function(_opt){opt=validateOptions(_opt),store.setOptions(_opt),isJSON(opt.json)?initWithJSON(opt.json):initWithURL(opt.json)},window.SimpleJekyllSearch.init=window.SimpleJekyllSearch}(window,document)},{"./JSONLoader":1,"./Repository":2,"./Templater":5}]},{},[6]);
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: intia-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.50
4
+ version: 0.1.51
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marc Schmidt
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-04-08 00:00:00.000000000 Z
11
+ date: 2022-04-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -67,6 +67,7 @@ files:
67
67
  - assets/img/icons/external.svg
68
68
  - assets/img/icons/handshake.svg
69
69
  - assets/img/icons/internal.png
70
+ - assets/img/icons/search.svg
70
71
  - assets/img/internal-link.png
71
72
  - assets/img/logo-black.png
72
73
  - assets/img/logo-dites.png