jekyll-theme-centos 2.0.9 → 2.2.0.pre.true.1.pre.alpha.9f29b18e
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/_includes/footer.html +1 -1
- data/_includes/people/about.html +27 -0
- data/_includes/people/header.html +11 -0
- data/_includes/people/posts.html +36 -0
- data/_includes/people/projects.html +26 -0
- data/_includes/people/pubkeys.html +30 -0
- data/_includes/people/support.html +22 -0
- data/_layouts/people.html +59 -0
- data/assets/img/people/username.png +0 -0
- data/assets/js/clipboard.min.js +7 -0
- metadata +25 -16
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3608dcfa86a7df0c604c051c50e5c109af7cf92e1b03cf549be9425b4d9e6aec
|
4
|
+
data.tar.gz: 897bc413c23f80f45c37528e837da7e64e010ed1b5e7097d7b7fc496d4cf3507
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ea359018eec0ebd5e4fe021734df7a5fda93058021fb1e804053d185f3d5f429ebe7f2488521a68c495394d446440cbfc9ef46e1339095cc8aa85e5f2d92cbda
|
7
|
+
data.tar.gz: f62df6dd992331ab6c73008393e795b147f916cf0826e4b27d7bd1345b3a0a7ba4de6c28a2dea242469071388d40141d81c596a9397bfbc28e049d03300e475a
|
data/_includes/footer.html
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
<footer class="footer pt-3 bg-dark small text-light" style="background: url({{ site.baseurl }}/assets/img/centos-motif.png) right center / cover;">
|
1
|
+
<footer class="footer mt-5 pt-3 bg-dark small text-light" style="background: url({{ site.baseurl }}/assets/img/centos-motif.png) right center / cover;">
|
2
2
|
|
3
3
|
<div class="container">
|
4
4
|
<div class="row justify-content-between mt-4 pt-4">
|
@@ -0,0 +1,27 @@
|
|
1
|
+
{% assign username = page.username %}
|
2
|
+
{% assign person = site.data.centos.people | where: "username", username %}
|
3
|
+
|
4
|
+
{% for item in person %}
|
5
|
+
<div class="container mt-5 mb-3 text-center">
|
6
|
+
|
7
|
+
<div class="row">
|
8
|
+
<div class="col">
|
9
|
+
{% if item.about.section.icon %}<div class="display-6">{{ item.about.section.icon }}</div>{% endif %}
|
10
|
+
{% if item.about.section.name %}<div class="display-6">{{ item.about.section.name }}</div>{% endif %}
|
11
|
+
{% if item.about.section.preamble %}<p>{{ item.about.section.preamble }}</p>{% endif %}
|
12
|
+
</div>
|
13
|
+
</div>
|
14
|
+
|
15
|
+
{% if item.about.content.size > 0 %}
|
16
|
+
<div class="row">
|
17
|
+
<div class="col">
|
18
|
+
{% for p in item.about.content %}
|
19
|
+
<p>{{ p }}</p>
|
20
|
+
{% endfor %}
|
21
|
+
</div>
|
22
|
+
</div>
|
23
|
+
{% endif %}
|
24
|
+
|
25
|
+
</div>
|
26
|
+
{% endfor %}
|
27
|
+
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<div class="bg-dark p-5" style="background: url({{ site.baseurl }}/assets/img/centos-motif.png) right center / cover;">
|
2
|
+
<div class="container p-5 text-white text-center">
|
3
|
+
<div class="row">
|
4
|
+
<div class="col">
|
5
|
+
<img class="rounded-circle shadow img-fluid" width="250" src="{{ site.baseurl }}/assets/img/people/{{ page.username }}.png" alt="{{ page.username }}" />
|
6
|
+
<h1 class="display-1 fw-bold">{{ page.username }}</h1>
|
7
|
+
<p class="lead">{{ page.fullname }}</p>
|
8
|
+
</div>
|
9
|
+
</div>
|
10
|
+
</div>
|
11
|
+
</div>
|
@@ -0,0 +1,36 @@
|
|
1
|
+
{% assign username = page.username %}
|
2
|
+
{% assign entries = site.posts | where: "username", username %}
|
3
|
+
{% assign person = site.data.centos.people | where: "username", username %}
|
4
|
+
|
5
|
+
{% if entries.size > 0 %}
|
6
|
+
{% for item in person %}
|
7
|
+
<div class="container">
|
8
|
+
|
9
|
+
<div class="row text-center">
|
10
|
+
<div class="col">
|
11
|
+
{% if item.posts.section.icon %}<div class="display-6">{{ item.posts.section.icon }}</div>{% endif %}
|
12
|
+
{% if item.posts.section.name %}<div class="display-6">{{ item.posts.section.name }}</div>{% endif %}
|
13
|
+
{% if item.posts.section.preamble %}<p>{{ item.posts.section.preamble }}</p>{% endif %}
|
14
|
+
</div>
|
15
|
+
</div>
|
16
|
+
|
17
|
+
<div class="row">
|
18
|
+
<div class="col">
|
19
|
+
<div class="list-group shadow mb-3">
|
20
|
+
{% for i in entries limit:5 %}
|
21
|
+
{%- assign date_format = site.date_format | default: "%b %-d, %Y" -%}
|
22
|
+
<a href="{{ i.link }}" class="list-group-item list-group-item-action">
|
23
|
+
<div class="d-flex gap-2w-100 justify-content-between">
|
24
|
+
<h5 class="mb-1 text-primary">{{ i.title }}</h5>
|
25
|
+
<small class="text-muted">{{ i.date | date: date_format }}</small>
|
26
|
+
</div>
|
27
|
+
<p class="mb-1">{{ i.excerpt | strip_html | slice: 0,150 }}...</p>
|
28
|
+
</a>
|
29
|
+
{% endfor %}
|
30
|
+
</div>
|
31
|
+
</div>
|
32
|
+
</div>
|
33
|
+
|
34
|
+
</div>
|
35
|
+
{% endfor %}
|
36
|
+
{% endif %}
|
@@ -0,0 +1,26 @@
|
|
1
|
+
{% assign username = page.username %}
|
2
|
+
{% assign person = site.data.centos.people | where: "username", username %}
|
3
|
+
|
4
|
+
{% for item in person %}
|
5
|
+
{% if item.projects.content.size > 0 %}
|
6
|
+
<div class="container my-5 text-center">
|
7
|
+
|
8
|
+
<div class="row">
|
9
|
+
<div class="col">
|
10
|
+
{% if item.projects.section.icon %}<div class="display-6">{{ item.projects.section.icon }}</div>{% endif %}
|
11
|
+
{% if item.projects.section.name %}<div class="display-6">{{ item.projects.section.name }}</div>{% endif %}
|
12
|
+
{% if item.projects.section.preamble %}<p>{{ item.projects.section.preamble }}</p>{% endif %}
|
13
|
+
</div>
|
14
|
+
</div>
|
15
|
+
<div class="row">
|
16
|
+
{% for project in item.projects.content %}
|
17
|
+
<div class="col-sm-6 {% cycle 'border-end', '' %}">
|
18
|
+
<h3 class="display-6 fw-bold"><a href="{{ project.name }}">{{ project.name }}</a></h3>
|
19
|
+
<p class="lead">{{ project.description }}</p>
|
20
|
+
</div>
|
21
|
+
{% endfor%}
|
22
|
+
</div>
|
23
|
+
</div>
|
24
|
+
|
25
|
+
{% endif %}
|
26
|
+
{% endfor%}
|
@@ -0,0 +1,30 @@
|
|
1
|
+
{% assign username = page.username %}
|
2
|
+
{% assign person = site.data.centos.people | where: "username", username %}
|
3
|
+
|
4
|
+
{% for item in person %}
|
5
|
+
<div class="container mt-5 mb-3 text-center">
|
6
|
+
|
7
|
+
<div class="row">
|
8
|
+
<div class="col">
|
9
|
+
{% if item.pubkeys.section.icon %}<div class="display-6">{{ item.pubkeys.section.icon }}</div>{% endif %}
|
10
|
+
{% if item.pubkeys.section.name %}<div class="display-6">{{ item.pubkeys.section.name }}</div>{% endif %}
|
11
|
+
{% if item.pubkeys.section.preamble %}<p>{{ item.pubkeys.section.preamble }}</p>{% endif %}
|
12
|
+
</div>
|
13
|
+
</div>
|
14
|
+
|
15
|
+
<div class="row">
|
16
|
+
{% for pubkey in item.pubkeys.content %}
|
17
|
+
<div class="col-sm-6 px-5 mb-3">
|
18
|
+
<h3 class="display-6 fw-bold">{{ pubkey.name }}</h3>
|
19
|
+
|
20
|
+
<div class="input-group mb-3">
|
21
|
+
<input id="{{ pubkey.name }}-key-{{ forloop.index }}" value="{{ pubkey.content }}" type="text" class="form-control" placeholder="User's key" aria-label="User's key" aria-describedby="{{ pubkey.name }}-button-{{ forloop.index }}" readonly />
|
22
|
+
<button id="{{ pubkey.name }}-button-{{ forloop.index }}" class="btn btn-clipboard btn-outline-primary" type="button" data-clipboard-target="#{{ pubkey.name }}-key-{{ forloop.index }}" data-bs-toggle="tooltip" data-bs-title="Copy to clipboard"><i class="fa-solid fa-clipboard"></i></button>
|
23
|
+
</div>
|
24
|
+
|
25
|
+
</div>
|
26
|
+
{% endfor %}
|
27
|
+
</div>
|
28
|
+
|
29
|
+
</div>
|
30
|
+
{% endfor%}
|
@@ -0,0 +1,22 @@
|
|
1
|
+
{% assign username = page.username %}
|
2
|
+
{% assign person = site.data.centos.people | where: "username", username %}
|
3
|
+
|
4
|
+
{% for item in person %}
|
5
|
+
<div class="container mt-5 mb-3 text-center">
|
6
|
+
|
7
|
+
<div class="row">
|
8
|
+
<div class="col">
|
9
|
+
{% if item.support.section.icon %}<div class="display-6">{{ item.support.section.icon }}</div>{% endif %}
|
10
|
+
{% if item.support.section.name %}<div class="display-6">{{ item.support.section.name }}</div>{% endif %}
|
11
|
+
{% if item.support.section.preamble %}<p>{{ item.support.section.preamble }}</p>{% endif %}
|
12
|
+
</div>
|
13
|
+
</div>
|
14
|
+
|
15
|
+
<div class="row">
|
16
|
+
<div class="col">
|
17
|
+
{{ item.support.content }}
|
18
|
+
</div>
|
19
|
+
</div>
|
20
|
+
|
21
|
+
</div>
|
22
|
+
{% endfor %}
|
@@ -0,0 +1,59 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html lang="{{ page.lang | default: 'en' }}">
|
3
|
+
|
4
|
+
{% include head.html -%}
|
5
|
+
|
6
|
+
<body>
|
7
|
+
|
8
|
+
{% include navbar.html -%}
|
9
|
+
|
10
|
+
<main class="bg-light">
|
11
|
+
|
12
|
+
{% include people/header.html %}
|
13
|
+
{% include people/about.html %}
|
14
|
+
{% include people/projects.html %}
|
15
|
+
{% include people/posts.html %}
|
16
|
+
{% include people/pubkeys.html %}
|
17
|
+
{% include people/support.html %}
|
18
|
+
|
19
|
+
{% include footer.html -%}
|
20
|
+
|
21
|
+
<script src="{{ site.baseurl }}/assets/js/bootstrap.bundle.min.js"></script>
|
22
|
+
<script src="{{ site.baseurl }}/assets/js/jquery.min.js"></script>
|
23
|
+
<script src="{{ site.baseurl }}/assets/js/clipboard.min.js"></script>
|
24
|
+
<script>
|
25
|
+
// Initialize ClipboardJS
|
26
|
+
$('.btn-clipboard').on('click', function() {
|
27
|
+
let button = $(this);
|
28
|
+
var copy_id = $(this).attr('id');
|
29
|
+
var clipboard = new ClipboardJS( '#' + copy_id );
|
30
|
+
|
31
|
+
clipboard.on('success', function() {
|
32
|
+
const currentLabel = button.html();
|
33
|
+
const tooltip = bootstrap.Tooltip.getInstance('#' + copy_id);
|
34
|
+
const tooltipLabel = button.attr('data-bs-title');
|
35
|
+
|
36
|
+
// Exit label update when already in progress
|
37
|
+
if(button.html() === '<i class="fa-solid fa-clipboard-check"></i>'){
|
38
|
+
return;
|
39
|
+
}
|
40
|
+
|
41
|
+
// Update button label and tooltip
|
42
|
+
button.html('<i class="fa-solid fa-clipboard-check"></i>');
|
43
|
+
tooltip.setContent({ '.tooltip-inner': 'Copied!' })
|
44
|
+
|
45
|
+
// Revert button label after 2 seconds
|
46
|
+
setTimeout(function(){
|
47
|
+
button.html(currentLabel);
|
48
|
+
tooltip.setContent({ '.tooltip-inner': tooltipLabel })
|
49
|
+
}, 2000)
|
50
|
+
});
|
51
|
+
});
|
52
|
+
|
53
|
+
// Initialize Tooltips
|
54
|
+
const tooltipTriggerList = document.querySelectorAll('[data-bs-toggle="tooltip"]')
|
55
|
+
const tooltipList = [...tooltipTriggerList].map(tooltipTriggerEl => new bootstrap.Tooltip(tooltipTriggerEl))
|
56
|
+
</script>
|
57
|
+
</body>
|
58
|
+
|
59
|
+
</html>
|
Binary file
|
@@ -0,0 +1,7 @@
|
|
1
|
+
/*!
|
2
|
+
* clipboard.js v2.0.11
|
3
|
+
* https://clipboardjs.com/
|
4
|
+
*
|
5
|
+
* Licensed MIT © Zeno Rocha
|
6
|
+
*/
|
7
|
+
!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.ClipboardJS=e():t.ClipboardJS=e()}(this,function(){return n={686:function(t,e,n){"use strict";n.d(e,{default:function(){return b}});var e=n(279),i=n.n(e),e=n(370),u=n.n(e),e=n(817),r=n.n(e);function c(t){try{return document.execCommand(t)}catch(t){return}}var a=function(t){t=r()(t);return c("cut"),t};function o(t,e){var n,o,t=(n=t,o="rtl"===document.documentElement.getAttribute("dir"),(t=document.createElement("textarea")).style.fontSize="12pt",t.style.border="0",t.style.padding="0",t.style.margin="0",t.style.position="absolute",t.style[o?"right":"left"]="-9999px",o=window.pageYOffset||document.documentElement.scrollTop,t.style.top="".concat(o,"px"),t.setAttribute("readonly",""),t.value=n,t);return e.container.appendChild(t),e=r()(t),c("copy"),t.remove(),e}var f=function(t){var e=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{container:document.body},n="";return"string"==typeof t?n=o(t,e):t instanceof HTMLInputElement&&!["text","search","url","tel","password"].includes(null==t?void 0:t.type)?n=o(t.value,e):(n=r()(t),c("copy")),n};function l(t){return(l="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}var s=function(){var t=0<arguments.length&&void 0!==arguments[0]?arguments[0]:{},e=t.action,n=void 0===e?"copy":e,o=t.container,e=t.target,t=t.text;if("copy"!==n&&"cut"!==n)throw new Error('Invalid "action" value, use either "copy" or "cut"');if(void 0!==e){if(!e||"object"!==l(e)||1!==e.nodeType)throw new Error('Invalid "target" value, use a valid Element');if("copy"===n&&e.hasAttribute("disabled"))throw new Error('Invalid "target" attribute. Please use "readonly" instead of "disabled" attribute');if("cut"===n&&(e.hasAttribute("readonly")||e.hasAttribute("disabled")))throw new Error('Invalid "target" attribute. You can\'t cut text from elements with "readonly" or "disabled" attributes')}return t?f(t,{container:o}):e?"cut"===n?a(e):f(e,{container:o}):void 0};function p(t){return(p="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function d(t,e){for(var n=0;n<e.length;n++){var o=e[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}function y(t,e){return(y=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function h(n){var o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(t){return!1}}();return function(){var t,e=v(n);return t=o?(t=v(this).constructor,Reflect.construct(e,arguments,t)):e.apply(this,arguments),e=this,!(t=t)||"object"!==p(t)&&"function"!=typeof t?function(t){if(void 0!==t)return t;throw new ReferenceError("this hasn't been initialised - super() hasn't been called")}(e):t}}function v(t){return(v=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}function m(t,e){t="data-clipboard-".concat(t);if(e.hasAttribute(t))return e.getAttribute(t)}var b=function(){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&y(t,e)}(r,i());var t,e,n,o=h(r);function r(t,e){var n;return function(t){if(!(t instanceof r))throw new TypeError("Cannot call a class as a function")}(this),(n=o.call(this)).resolveOptions(e),n.listenClick(t),n}return t=r,n=[{key:"copy",value:function(t){var e=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{container:document.body};return f(t,e)}},{key:"cut",value:function(t){return a(t)}},{key:"isSupported",value:function(){var t=0<arguments.length&&void 0!==arguments[0]?arguments[0]:["copy","cut"],t="string"==typeof t?[t]:t,e=!!document.queryCommandSupported;return t.forEach(function(t){e=e&&!!document.queryCommandSupported(t)}),e}}],(e=[{key:"resolveOptions",value:function(){var t=0<arguments.length&&void 0!==arguments[0]?arguments[0]:{};this.action="function"==typeof t.action?t.action:this.defaultAction,this.target="function"==typeof t.target?t.target:this.defaultTarget,this.text="function"==typeof t.text?t.text:this.defaultText,this.container="object"===p(t.container)?t.container:document.body}},{key:"listenClick",value:function(t){var e=this;this.listener=u()(t,"click",function(t){return e.onClick(t)})}},{key:"onClick",value:function(t){var e=t.delegateTarget||t.currentTarget,n=this.action(e)||"copy",t=s({action:n,container:this.container,target:this.target(e),text:this.text(e)});this.emit(t?"success":"error",{action:n,text:t,trigger:e,clearSelection:function(){e&&e.focus(),window.getSelection().removeAllRanges()}})}},{key:"defaultAction",value:function(t){return m("action",t)}},{key:"defaultTarget",value:function(t){t=m("target",t);if(t)return document.querySelector(t)}},{key:"defaultText",value:function(t){return m("text",t)}},{key:"destroy",value:function(){this.listener.destroy()}}])&&d(t.prototype,e),n&&d(t,n),r}()},828:function(t){var e;"undefined"==typeof Element||Element.prototype.matches||((e=Element.prototype).matches=e.matchesSelector||e.mozMatchesSelector||e.msMatchesSelector||e.oMatchesSelector||e.webkitMatchesSelector),t.exports=function(t,e){for(;t&&9!==t.nodeType;){if("function"==typeof t.matches&&t.matches(e))return t;t=t.parentNode}}},438:function(t,e,n){var u=n(828);function i(t,e,n,o,r){var i=function(e,n,t,o){return function(t){t.delegateTarget=u(t.target,n),t.delegateTarget&&o.call(e,t)}}.apply(this,arguments);return t.addEventListener(n,i,r),{destroy:function(){t.removeEventListener(n,i,r)}}}t.exports=function(t,e,n,o,r){return"function"==typeof t.addEventListener?i.apply(null,arguments):"function"==typeof n?i.bind(null,document).apply(null,arguments):("string"==typeof t&&(t=document.querySelectorAll(t)),Array.prototype.map.call(t,function(t){return i(t,e,n,o,r)}))}},879:function(t,n){n.node=function(t){return void 0!==t&&t instanceof HTMLElement&&1===t.nodeType},n.nodeList=function(t){var e=Object.prototype.toString.call(t);return void 0!==t&&("[object NodeList]"===e||"[object HTMLCollection]"===e)&&"length"in t&&(0===t.length||n.node(t[0]))},n.string=function(t){return"string"==typeof t||t instanceof String},n.fn=function(t){return"[object Function]"===Object.prototype.toString.call(t)}},370:function(t,e,n){var f=n(879),l=n(438);t.exports=function(t,e,n){if(!t&&!e&&!n)throw new Error("Missing required arguments");if(!f.string(e))throw new TypeError("Second argument must be a String");if(!f.fn(n))throw new TypeError("Third argument must be a Function");if(f.node(t))return c=e,a=n,(u=t).addEventListener(c,a),{destroy:function(){u.removeEventListener(c,a)}};if(f.nodeList(t))return o=t,r=e,i=n,Array.prototype.forEach.call(o,function(t){t.addEventListener(r,i)}),{destroy:function(){Array.prototype.forEach.call(o,function(t){t.removeEventListener(r,i)})}};if(f.string(t))return t=t,e=e,n=n,l(document.body,t,e,n);throw new TypeError("First argument must be a String, HTMLElement, HTMLCollection, or NodeList");var o,r,i,u,c,a}},817:function(t){t.exports=function(t){var e,n="SELECT"===t.nodeName?(t.focus(),t.value):"INPUT"===t.nodeName||"TEXTAREA"===t.nodeName?((e=t.hasAttribute("readonly"))||t.setAttribute("readonly",""),t.select(),t.setSelectionRange(0,t.value.length),e||t.removeAttribute("readonly"),t.value):(t.hasAttribute("contenteditable")&&t.focus(),n=window.getSelection(),(e=document.createRange()).selectNodeContents(t),n.removeAllRanges(),n.addRange(e),n.toString());return n}},279:function(t){function e(){}e.prototype={on:function(t,e,n){var o=this.e||(this.e={});return(o[t]||(o[t]=[])).push({fn:e,ctx:n}),this},once:function(t,e,n){var o=this;function r(){o.off(t,r),e.apply(n,arguments)}return r._=e,this.on(t,r,n)},emit:function(t){for(var e=[].slice.call(arguments,1),n=((this.e||(this.e={}))[t]||[]).slice(),o=0,r=n.length;o<r;o++)n[o].fn.apply(n[o].ctx,e);return this},off:function(t,e){var n=this.e||(this.e={}),o=n[t],r=[];if(o&&e)for(var i=0,u=o.length;i<u;i++)o[i].fn!==e&&o[i].fn._!==e&&r.push(o[i]);return r.length?n[t]=r:delete n[t],this}},t.exports=e,t.exports.TinyEmitter=e}},r={},o.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return o.d(e,{a:e}),e},o.d=function(t,e){for(var n in e)o.o(e,n)&&!o.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:e[n]})},o.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},o(686).default;function o(t){if(r[t])return r[t].exports;var e=r[t]={exports:{}};return n[t](e,e.exports,o),e.exports}var n,r});
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-centos
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.2.0.pre.true.1.pre.alpha.9f29b18e
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Alain Reguera Delgado
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-12-
|
11
|
+
date: 2022-12-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -16,42 +16,42 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
19
|
+
version: 4.2.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:
|
26
|
+
version: 4.2.0
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
|
-
name:
|
28
|
+
name: webrick
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version:
|
34
|
-
type: :
|
33
|
+
version: 1.7.0
|
34
|
+
type: :runtime
|
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:
|
40
|
+
version: 1.7.0
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
|
-
name:
|
42
|
+
name: bundler
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
45
|
- - "~>"
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version:
|
47
|
+
version: 2.3.0
|
48
48
|
type: :development
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
52
|
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version:
|
54
|
+
version: 2.3.0
|
55
55
|
description:
|
56
56
|
email:
|
57
57
|
- areguera@centosproject.org
|
@@ -90,6 +90,12 @@ files:
|
|
90
90
|
- _includes/home/sponsors.html
|
91
91
|
- _includes/hr.html
|
92
92
|
- _includes/navbar.html
|
93
|
+
- _includes/people/about.html
|
94
|
+
- _includes/people/header.html
|
95
|
+
- _includes/people/posts.html
|
96
|
+
- _includes/people/projects.html
|
97
|
+
- _includes/people/pubkeys.html
|
98
|
+
- _includes/people/support.html
|
93
99
|
- _includes/post-nav-explorer.html
|
94
100
|
- _includes/post-nav.html
|
95
101
|
- _includes/post/header.html
|
@@ -101,6 +107,7 @@ files:
|
|
101
107
|
- _layouts/default-datatables.html
|
102
108
|
- _layouts/default.html
|
103
109
|
- _layouts/home.html
|
110
|
+
- _layouts/people.html
|
104
111
|
- _layouts/post.html
|
105
112
|
- _layouts/search.html
|
106
113
|
- _layouts/sponsors.html
|
@@ -128,6 +135,7 @@ files:
|
|
128
135
|
- assets/img/distributions/centos-stream/9/screenshot-2.png
|
129
136
|
- assets/img/distributions/centos-stream/9/screenshot-3.png
|
130
137
|
- assets/img/favicon.png
|
138
|
+
- assets/img/people/username.png
|
131
139
|
- assets/img/sort_asc.png
|
132
140
|
- assets/img/sort_asc_disabled.png
|
133
141
|
- assets/img/sort_both.png
|
@@ -229,6 +237,7 @@ files:
|
|
229
237
|
- assets/img/sponsors/wow.234x60.gif
|
230
238
|
- assets/js/bootstrap.bundle.min.js
|
231
239
|
- assets/js/bootstrap.bundle.min.js.map
|
240
|
+
- assets/js/clipboard.min.js
|
232
241
|
- assets/js/dataTables.bootstrap5.min.js
|
233
242
|
- assets/js/jquery.dataTables.min.js
|
234
243
|
- assets/js/jquery.min.js
|
@@ -334,7 +343,7 @@ files:
|
|
334
343
|
- assets/webfonts/fa-regular-400.woff2
|
335
344
|
- assets/webfonts/fa-solid-900.woff
|
336
345
|
- assets/webfonts/fa-solid-900.woff2
|
337
|
-
homepage: https://
|
346
|
+
homepage: https://gitlab.com/areguera/jekyll-theme-centos
|
338
347
|
licenses:
|
339
348
|
- MIT
|
340
349
|
metadata: {}
|
@@ -344,14 +353,14 @@ require_paths:
|
|
344
353
|
- lib
|
345
354
|
required_ruby_version: !ruby/object:Gem::Requirement
|
346
355
|
requirements:
|
347
|
-
- - "
|
356
|
+
- - "~>"
|
348
357
|
- !ruby/object:Gem::Version
|
349
|
-
version: '0'
|
358
|
+
version: '3.0'
|
350
359
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
351
360
|
requirements:
|
352
|
-
- - "
|
361
|
+
- - ">"
|
353
362
|
- !ruby/object:Gem::Version
|
354
|
-
version:
|
363
|
+
version: 1.3.1
|
355
364
|
requirements: []
|
356
365
|
rubygems_version: 3.3.26
|
357
366
|
signing_key:
|