jekyll-theme-centos 2.2.18 → 2.2.19
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/_data/base/footer.yml +32 -0
- data/_data/base/identity.yml +20 -0
- data/_data/base/navbar.yml +57 -0
- data/_data/base/navbar_absolute.yml +74 -0
- data/_data/base/navbar_www.yml +74 -0
- data/_includes/base/announcements.html +6 -0
- data/_includes/base/breadcrumbs.html +13 -0
- data/_includes/base/footer.html +61 -0
- data/_includes/base/head.html +17 -0
- data/_includes/base/header.html +17 -0
- data/_includes/base/navbar.html +32 -0
- data/_includes/base/script.html +70 -0
- data/_includes/base/toc-accordion.html +10 -0
- data/_includes/base/toc.html +99 -0
- data/_layouts/base/default.html +31 -0
- data/_sass/base/_centos.scss +80 -0
- data/_sass/base/_variables.scss +24 -0
- data/assets/css/base/stylesheet.min.scss +6 -0
- data/assets/icons/android-chrome-192.png +0 -0
- data/assets/icons/android-chrome-512.png +0 -0
- data/assets/icons/apple-touch-icon.png +0 -0
- data/assets/icons/favicon-16.png +0 -0
- data/assets/icons/favicon-32.png +0 -0
- data/assets/img/{people → base}/screenshot.svg +4 -4
- metadata +21 -32
- data/_data/download/cards.yml +0 -148
- data/_data/download/navbar.yml +0 -48
- data/_data/people/navbar.yml +0 -34
- data/_includes/download/cards-body-convert.html +0 -10
- data/_includes/download/cards-body-doc.html +0 -9
- data/_includes/download/cards-body-eol.html +0 -16
- data/_includes/download/cards-body-screenshot.html +0 -26
- data/_includes/download/cards-body.html +0 -8
- data/_includes/download/cards-footer.html +0 -3
- data/_includes/download/cards-header-convert.html +0 -8
- data/_includes/download/cards-header-doc.html +0 -8
- data/_includes/download/cards-header-eol.html +0 -8
- data/_includes/download/cards-header-screenshot.html +0 -8
- data/_includes/download/cards-header.html +0 -13
- data/_includes/download/cards.html +0 -62
- data/_includes/people/about.html +0 -25
- data/_includes/people/header.html +0 -11
- data/_includes/people/posts.html +0 -35
- data/_includes/people/projects.html +0 -32
- data/_includes/people/pubkeys.html +0 -31
- data/_includes/people/support.html +0 -25
- data/_layouts/download/cards.html +0 -7
- data/_layouts/people/default.html +0 -20
- data/assets/img/download/centos-linux-7-2009-screenshot-n.png +0 -0
- data/assets/img/download/centos-stream-8-screenshot-n.png +0 -0
- data/assets/img/download/centos-stream-9-screenshot-n.png +0 -0
- data/assets/img/download/distribution-release-screenshot-n.png +0 -0
- data/assets/img/download/distribution-release-screenshot-n.svg +0 -128
- data/assets/img/people/YourUsername.svg +0 -64
@@ -1,62 +0,0 @@
|
|
1
|
-
{% if include.download %}
|
2
|
-
{% assign cards = site.data.centos.download | where: "page", include.download %}
|
3
|
-
{% else %}
|
4
|
-
{% assign cards = site.data.centos.download %}
|
5
|
-
{% endif %}
|
6
|
-
|
7
|
-
{% for card in cards %}
|
8
|
-
<div class="mb-5">
|
9
|
-
<h1>{{ card.name }}</h1>
|
10
|
-
<p>{{ card.description }}</p>
|
11
|
-
<ul class="nav nav-pills my-3 justify-content-start" id="pills-{{ card.page }}-tab" role="tablist">
|
12
|
-
{% for release in card.releases %}
|
13
|
-
<li class="nav-item" role="presentation">
|
14
|
-
<button class="nav-link{% if forloop.first %} active{% endif %} fw-bold" id="pills-{{ card.page }}-release-{{ forloop.index }}-tab" data-bs-toggle="tab" data-bs-target="#pills-{{ card.page }}-release-{{ forloop.index }}" type="button" role="tab" aria-controls="pills-{{ forloop.index }}-release-{{ release[0] }}-tab" {% if forloop.first %} aria-selected="true" {% endif %}>{{ release[0] }}</button>
|
15
|
-
</li>
|
16
|
-
{% endfor %}
|
17
|
-
</ul>
|
18
|
-
|
19
|
-
<div class="tab-content mb-3" id="pills-{{ card.page }}-tabContent">
|
20
|
-
{% for release in card.releases %}
|
21
|
-
<div class="tab-pane fade {% if forloop.first %} show active{% endif %}" id="pills-{{ card.page }}-release-{{ forloop.index }}" role="tabpanel" aria-labelledby="pills-{{ card.page }}-release-{{ forloop.index }}-tab" tabindex="{{ forloop.index }}">
|
22
|
-
{% for rows in release %}
|
23
|
-
{% if rows.screenshots.size > 0 %}
|
24
|
-
{% include download/cards-header-screenshot.html %}
|
25
|
-
{% include download/cards-body-screenshot.html %}
|
26
|
-
{% include download/cards-footer.html %}
|
27
|
-
{% endif %}
|
28
|
-
{% endfor %}
|
29
|
-
|
30
|
-
|
31
|
-
{% include download/cards-header.html %}
|
32
|
-
{% for rows in release %}
|
33
|
-
{% for row in rows.downloads %}
|
34
|
-
{% include download/cards-body.html %}
|
35
|
-
{% endfor %}
|
36
|
-
{% endfor %}
|
37
|
-
{% include download/cards-footer.html %}
|
38
|
-
|
39
|
-
{% include download/cards-header-doc.html %}
|
40
|
-
{% include download/cards-body-doc.html %}
|
41
|
-
{% include download/cards-footer.html %}
|
42
|
-
|
43
|
-
{% include download/cards-header-eol.html %}
|
44
|
-
{% for rows in release %}
|
45
|
-
{% for row in rows.eol %}
|
46
|
-
{% include download/cards-body-eol.html %}
|
47
|
-
{% endfor %}
|
48
|
-
{% endfor %}
|
49
|
-
{% include download/cards-footer.html %}
|
50
|
-
|
51
|
-
{% for rows in release %}
|
52
|
-
{% for row in rows.convert %}
|
53
|
-
{% include download/cards-header-convert.html %}
|
54
|
-
{% include download/cards-body-convert.html %}
|
55
|
-
{% include download/cards-footer.html %}
|
56
|
-
{% endfor %}
|
57
|
-
{% endfor %}
|
58
|
-
</div>
|
59
|
-
{% endfor %}
|
60
|
-
</div>
|
61
|
-
</div>
|
62
|
-
{% endfor %}
|
data/_includes/people/about.html
DELETED
@@ -1,25 +0,0 @@
|
|
1
|
-
{% if page.about.section.visible == true %}
|
2
|
-
<div class="container py-5 text-center border-top{% if page.about.section.highlight == true %} bg-light-radial-gradient{% endif %}">
|
3
|
-
<div class="row">
|
4
|
-
<div class="col">
|
5
|
-
{% if page.about.section.icon %}
|
6
|
-
<div class="display-6"><i class="{{ page.about.section.icon }}"></i></div>
|
7
|
-
{% endif %} {% if page.about.section.name %}
|
8
|
-
<div class="display-6 fw-bold">{{ page.about.section.name }}</div>
|
9
|
-
{% endif %} {% if page.about.section.preamble %}
|
10
|
-
<p>{{ page.about.section.preamble }}</p>
|
11
|
-
{% endif %}
|
12
|
-
</div>
|
13
|
-
</div>
|
14
|
-
|
15
|
-
<div class="row mt-3">
|
16
|
-
<div class="col">
|
17
|
-
{% if page.about.content.size > 0 %} {% for p in page.about.content %}
|
18
|
-
<p>{{ p }}</p>
|
19
|
-
{% endfor %} {% else %}
|
20
|
-
<div class="alert alert-light border shadow" role="alert">Nothing posted here, yet.</div>
|
21
|
-
{% endif %}
|
22
|
-
</div>
|
23
|
-
</div>
|
24
|
-
</div>
|
25
|
-
{% endif %}
|
@@ -1,11 +0,0 @@
|
|
1
|
-
<div class="bg-dark bg-image">
|
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 }}.svg" 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>
|
data/_includes/people/posts.html
DELETED
@@ -1,35 +0,0 @@
|
|
1
|
-
{% assign username = page.username %} {% assign entries = site.posts | where: "author", username %} {% assign limit = page.posts.section.limit %} {% if page.posts.section.visible == true %}
|
2
|
-
<div class="container py-5 text-center border-top{% if page.posts.section.highlight == true %} bg-light-radial-gradient{% endif %}">
|
3
|
-
<div class="row">
|
4
|
-
<div class="col">
|
5
|
-
{% if page.posts.section.icon %}
|
6
|
-
<div class="display-6"><i class="{{ page.posts.section.icon }}"></i></div>
|
7
|
-
{% endif %} {% if page.posts.section.name %}
|
8
|
-
<div class="display-6 fw-bold">{{ page.posts.section.name }}</div>
|
9
|
-
{% endif %} {% if page.posts.section.preamble %}
|
10
|
-
<p>{{ page.posts.section.preamble }}</p>
|
11
|
-
{% endif %}
|
12
|
-
</div>
|
13
|
-
</div>
|
14
|
-
|
15
|
-
<div class="row">
|
16
|
-
<div class="col">
|
17
|
-
{% if entries.size > 0 %}
|
18
|
-
<div class="list-group shadow text-start">
|
19
|
-
{% for i in entries limit: limit %} {%- assign date_format = site.date_format | default: "%b %-d, %Y" -%}
|
20
|
-
<a href="{{ site.baseurl }}{{ i.url }}" class="list-group-item list-group-item-action">
|
21
|
-
<div class="d-flex gap-2w-100 justify-content-between">
|
22
|
-
<h5 class="pt-0 mt-1 mb-1 fw-bold text-primary">{{ i.title }}</h5>
|
23
|
-
<small class="text-muted">{{ i.date | date: date_format }}</small>
|
24
|
-
</div>
|
25
|
-
<p class="mb-1">{{ i.excerpt | strip_html | slice: 0,150 }}...</p>
|
26
|
-
</a>
|
27
|
-
{% endfor %}
|
28
|
-
</div>
|
29
|
-
{% else %}
|
30
|
-
<div class="alert alert-light border shadow" role="alert">Nothing posted here, yet.</div>
|
31
|
-
{% endif %}
|
32
|
-
</div>
|
33
|
-
</div>
|
34
|
-
</div>
|
35
|
-
{% endif %}
|
@@ -1,32 +0,0 @@
|
|
1
|
-
{% assign username = page.username %} {% assign projects = page.projects.content %} {% assign limit = page.posts.section.limit %} {% if page.projects.section.visible == true %}
|
2
|
-
<div class="container py-5 text-center border-top{% if page.projects.section.highlight == true %} bg-light-radial-gradient{% endif %}">
|
3
|
-
<div class="row">
|
4
|
-
<div class="col">
|
5
|
-
{% if page.projects.section.icon %}
|
6
|
-
<div class="display-6"><i class="{{ page.projects.section.icon }}"></i></div>
|
7
|
-
{% endif %} {% if page.projects.section.name %}
|
8
|
-
<div class="display-6 fw-bold">{{ page.projects.section.name }}</div>
|
9
|
-
{% endif %} {% if page.projects.section.preamble %}
|
10
|
-
<p>{{ page.projects.section.preamble }}</p>
|
11
|
-
{% endif %}
|
12
|
-
</div>
|
13
|
-
</div>
|
14
|
-
|
15
|
-
<div class="row">
|
16
|
-
<div class="col">
|
17
|
-
{% if projects.size > 0 %}
|
18
|
-
<div class="list-group shadow text-start">
|
19
|
-
{% for i in projects limit: limit %}
|
20
|
-
<a href="{{ site.baseurl }}{{ i.link }}" class="list-group-item list-group-item-action">
|
21
|
-
<div class="fw-bold">{{ i.name }}</div>
|
22
|
-
<small class="text-muted">{{ i.description }}</small>
|
23
|
-
</a>
|
24
|
-
{% endfor %}
|
25
|
-
</div>
|
26
|
-
{% else %}
|
27
|
-
<div class="alert alert-light border shadow" role="alert">Nothing posted here, yet.</div>
|
28
|
-
{% endif %}
|
29
|
-
</div>
|
30
|
-
</div>
|
31
|
-
</div>
|
32
|
-
{% endif %}
|
@@ -1,31 +0,0 @@
|
|
1
|
-
{% if page.pubkeys.section.visible == true %}
|
2
|
-
<div class="container py-5 text-center border-top{% if page.pubkeys.section.highlight == true %} bg-light-radial-gradient{% endif %}">
|
3
|
-
<div class="row">
|
4
|
-
<div class="col">
|
5
|
-
{% if page.pubkeys.section.icon %}
|
6
|
-
<div class="display-6"><i class="{{ page.pubkeys.section.icon }}"></i></div>
|
7
|
-
{% endif %} {% if page.pubkeys.section.name %}
|
8
|
-
<div class="display-6 fw-bold">{{ page.pubkeys.section.name }}</div>
|
9
|
-
{% endif %} {% if page.pubkeys.section.preamble %}
|
10
|
-
<p>{{ page.pubkeys.section.preamble }}</p>
|
11
|
-
{% endif %}
|
12
|
-
</div>
|
13
|
-
</div>
|
14
|
-
|
15
|
-
{% if page.pubkeys.content.size > 0 %}
|
16
|
-
<div class="row">
|
17
|
-
{% for pubkey in page.pubkeys.content %}
|
18
|
-
<div class="col-sm-6 px-5">
|
19
|
-
<p class="fw-bold">{{ pubkey.name }}</p>
|
20
|
-
<div class="input-group">
|
21
|
-
<textarea id="{{ pubkey.name }}-key-{{ forloop.index }}" class="form-control font-monospace" placeholder="User's key" aria-label="User's key" aria-describedby="{{ pubkey.name }}-button-{{ forloop.index }}" readonly rows="5">{{ pubkey.content }}</textarea>
|
22
|
-
<button id="{{ pubkey.name }}-button-{{ forloop.index }}" class="btn btn-clipboard" type="button" aria-label="Copy to clipboard" 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
|
-
</div>
|
25
|
-
{% endfor %}
|
26
|
-
</div>
|
27
|
-
{% else %}
|
28
|
-
<div class="alert alert-light border shadow" role="alert">Nothing posted here, yet.</div>
|
29
|
-
{% endif %}
|
30
|
-
</div>
|
31
|
-
{% endif %}
|
@@ -1,25 +0,0 @@
|
|
1
|
-
{% if page.support.section.visible == true %}
|
2
|
-
<div class="container py-5 text-center border-top{% if page.support.section.highlight == true %} bg-light-radial-gradient{% endif %}">
|
3
|
-
<div class="row">
|
4
|
-
<div class="col">
|
5
|
-
{% if page.support.section.icon %}
|
6
|
-
<div class="display-6"><i class="{{ page.support.section.icon }}"></i></div>
|
7
|
-
{% endif %} {% if page.support.section.name %}
|
8
|
-
<div class="display-6 fw-bold">{{ page.support.section.name }}</div>
|
9
|
-
{% endif %} {% if page.support.section.preamble %}
|
10
|
-
<p>{{ page.support.section.preamble }}</p>
|
11
|
-
{% endif %}
|
12
|
-
</div>
|
13
|
-
</div>
|
14
|
-
|
15
|
-
{% if page.support.content.size > 0 %}
|
16
|
-
<div class="row">
|
17
|
-
{% for support in page.support.content %}
|
18
|
-
<div class="col">{{ support }}</div>
|
19
|
-
{% endfor %}
|
20
|
-
</div>
|
21
|
-
{% else %}
|
22
|
-
<div class="alert alert-light border shadow" role="alert">Nothing posted here, yet.</div>
|
23
|
-
{% endif %}
|
24
|
-
</div>
|
25
|
-
{% endif %}
|
@@ -1,20 +0,0 @@
|
|
1
|
-
<!DOCTYPE html>
|
2
|
-
<html lang="{{ page.lang | default: 'en' }}">
|
3
|
-
{% include base/head.html title=page.title -%}
|
4
|
-
|
5
|
-
<body id="top">
|
6
|
-
{% include base/navbar.html -%}
|
7
|
-
|
8
|
-
<main>
|
9
|
-
{% include people/header.html %}
|
10
|
-
{% include people/about.html %}
|
11
|
-
{% include people/projects.html %}
|
12
|
-
{% include people/posts.html %}
|
13
|
-
{% include people/pubkeys.html %}
|
14
|
-
{% include people/support.html %}
|
15
|
-
</main>
|
16
|
-
|
17
|
-
{% include base/footer.html %}
|
18
|
-
{% include base/script.html -%}
|
19
|
-
</body>
|
20
|
-
</html>
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -1,128 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
-
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
3
|
-
|
4
|
-
<svg
|
5
|
-
width="1920"
|
6
|
-
height="1080"
|
7
|
-
viewBox="0 0 507.99999 285.75"
|
8
|
-
version="1.1"
|
9
|
-
id="svg5"
|
10
|
-
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
11
|
-
sodipodi:docname="screenshot-n.svg"
|
12
|
-
inkscape:export-filename="screenshot-n.png"
|
13
|
-
inkscape:export-xdpi="96"
|
14
|
-
inkscape:export-ydpi="96"
|
15
|
-
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
16
|
-
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
17
|
-
xmlns:xlink="http://www.w3.org/1999/xlink"
|
18
|
-
xmlns="http://www.w3.org/2000/svg"
|
19
|
-
xmlns:svg="http://www.w3.org/2000/svg">
|
20
|
-
<sodipodi:namedview
|
21
|
-
id="namedview7"
|
22
|
-
pagecolor="#ffffff"
|
23
|
-
bordercolor="#666666"
|
24
|
-
borderopacity="1.0"
|
25
|
-
inkscape:showpageshadow="2"
|
26
|
-
inkscape:pageopacity="0.0"
|
27
|
-
inkscape:pagecheckerboard="0"
|
28
|
-
inkscape:deskcolor="#d1d1d1"
|
29
|
-
inkscape:document-units="mm"
|
30
|
-
showgrid="false"
|
31
|
-
inkscape:zoom="0.75031886"
|
32
|
-
inkscape:cx="813.65408"
|
33
|
-
inkscape:cy="586.41735"
|
34
|
-
inkscape:window-width="3440"
|
35
|
-
inkscape:window-height="1371"
|
36
|
-
inkscape:window-x="0"
|
37
|
-
inkscape:window-y="32"
|
38
|
-
inkscape:window-maximized="1"
|
39
|
-
inkscape:current-layer="layer1" />
|
40
|
-
<defs
|
41
|
-
id="defs2">
|
42
|
-
<pattern
|
43
|
-
inkscape:collect="always"
|
44
|
-
xlink:href="#Strips1_1white"
|
45
|
-
id="pattern2972"
|
46
|
-
patternTransform="matrix(3.9313961,2.2697926,-4.2207076,7.31048,-1374.3636,-516.81011)" />
|
47
|
-
<pattern
|
48
|
-
inkscape:collect="always"
|
49
|
-
patternUnits="userSpaceOnUse"
|
50
|
-
width="2"
|
51
|
-
height="1"
|
52
|
-
patternTransform="translate(0,0) scale(10,10)"
|
53
|
-
id="Strips1_1white"
|
54
|
-
inkscape:stockid="Stripes 1:1 white">
|
55
|
-
<rect
|
56
|
-
style="fill:white;stroke:none"
|
57
|
-
x="0"
|
58
|
-
y="-0.5"
|
59
|
-
width="1"
|
60
|
-
height="2"
|
61
|
-
id="rect1946" />
|
62
|
-
</pattern>
|
63
|
-
</defs>
|
64
|
-
<g
|
65
|
-
inkscape:label="Layer 1"
|
66
|
-
inkscape:groupmode="layer"
|
67
|
-
id="layer1"
|
68
|
-
transform="translate(1361.2655,457.33365)">
|
69
|
-
<rect
|
70
|
-
style="fill:#f6f5f4;stroke:none;stroke-width:1.5875;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
|
71
|
-
id="rect241"
|
72
|
-
width="508"
|
73
|
-
height="285.75"
|
74
|
-
x="-1361.2655"
|
75
|
-
y="-457.33365" />
|
76
|
-
<rect
|
77
|
-
style="fill:url(#pattern2972);fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000;opacity:0.15"
|
78
|
-
id="rect405"
|
79
|
-
width="508"
|
80
|
-
height="285.75"
|
81
|
-
x="-1361.2655"
|
82
|
-
y="-457.33365" />
|
83
|
-
<text
|
84
|
-
xml:space="preserve"
|
85
|
-
style="font-size:18.2723px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';fill:#deddda;stroke-width:0.264583"
|
86
|
-
x="-1221.2755"
|
87
|
-
y="-267.83066"
|
88
|
-
id="text473"><tspan
|
89
|
-
sodipodi:role="line"
|
90
|
-
id="tspan471"
|
91
|
-
style="font-weight:bold;fill:#deddda;stroke-width:0.264583"
|
92
|
-
x="-1221.2755"
|
93
|
-
y="-267.83066">SCREENSHOT EXAMPLE</tspan></text>
|
94
|
-
<text
|
95
|
-
xml:space="preserve"
|
96
|
-
style="font-size:18.5803px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';fill:#deddda;stroke-width:0.264583"
|
97
|
-
x="-1153.7905"
|
98
|
-
y="-243.7957"
|
99
|
-
id="text477"><tspan
|
100
|
-
sodipodi:role="line"
|
101
|
-
id="tspan475"
|
102
|
-
style="fill:#deddda;stroke-width:0.264583"
|
103
|
-
x="-1153.7905"
|
104
|
-
y="-243.7957">1920x1080</tspan></text>
|
105
|
-
<g
|
106
|
-
id="g28251-9"
|
107
|
-
transform="matrix(1.4890225,1.4890225,-1.4890225,1.4890225,-2118.0722,-494.67476)"
|
108
|
-
inkscape:export-filename="/home/areguera/Pictures/centos-symbol-v20.png"
|
109
|
-
inkscape:export-xdpi="10.11"
|
110
|
-
inkscape:export-ydpi="10.11"
|
111
|
-
style="stroke-width:0.5">
|
112
|
-
<ellipse
|
113
|
-
style="fill:#deddda;fill-opacity:1;stroke:none;stroke-width:0.66146;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
|
114
|
-
id="ellipse15079-1"
|
115
|
-
cx="388.1235"
|
116
|
-
cy="-290.71561"
|
117
|
-
inkscape:export-filename="/home/areguera/Pictures/centos-symbol-v10.png"
|
118
|
-
inkscape:export-xdpi="13.06"
|
119
|
-
inkscape:export-ydpi="13.06"
|
120
|
-
rx="20.103001"
|
121
|
-
ry="20.103493" />
|
122
|
-
<path
|
123
|
-
id="rect52127-5-0"
|
124
|
-
style="fill:#f6f5f4;fill-opacity:1;stroke-width:4.56404;stroke-linecap:round;paint-order:fill markers stroke;stop-color:#000000"
|
125
|
-
d="m 377.36591,-301.47322 3.1e-4,6.30167 -4.45593,4.45594 4.45593,4.45593 -3.1e-4,6.30167 h 6.30198 l 4.45594,4.45593 4.45593,-4.45593 h 6.30134 l 3.2e-4,-6.30167 4.45594,-4.45593 -4.45594,-4.45594 -3.2e-4,-6.30167 h -6.30134 l -4.45593,-4.45593 -4.45594,4.45593 z m 2.27111,4.18345 1.91265,-1.91265 3.2276,3.22761 -3.2e-4,1.91263 h -1.91233 z m -2.16283,5.22203 4.56454,-3.4e-4 1.35246,1.35247 -1.35246,1.35246 h -4.56422 z m 9.29718,-9.29718 h 2.70491 v 4.56422 l -1.35245,1.35246 -1.35246,-1.35246 z m 0.0911,7.6066 1.26064,1.28263 1.26035,-1.28295 -0.0154,1.79789 1.7982,-0.0158 -1.28231,1.26034 1.28296,1.26033 -1.79821,-0.0152 0.0158,1.79822 -1.26032,-1.28232 -1.26034,1.28296 0.0154,-1.79853 -1.79853,0.0162 1.28263,-1.26065 -1.28296,-1.26034 1.79822,0.0158 z m -7.2255,9.61687 3.2276,-3.2276 1.91264,3.2e-4 v 1.91232 l -3.2276,3.2276 z m 11.83335,-11.83336 3.22761,-3.22761 1.91264,1.91265 -3.2276,3.22759 h -1.91233 z m -4.69869,11.34461 1.35214,-1.35213 1.35214,1.35213 3.1e-4,4.56455 -2.7046,-3.2e-4 z m 6.08509,-6.08509 1.35246,-1.35245 h 4.56422 l -3.2e-4,2.70459 h -4.56422 z m -1.3864,3.34656 1.91265,-3.2e-4 3.2276,3.2276 -1.91265,1.91264 -3.2276,-3.2276 z" />
|
126
|
-
</g>
|
127
|
-
</g>
|
128
|
-
</svg>
|
@@ -1,64 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
-
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
3
|
-
|
4
|
-
<svg
|
5
|
-
width="256"
|
6
|
-
height="256"
|
7
|
-
viewBox="0 0 67.733003 67.733003"
|
8
|
-
version="1.1"
|
9
|
-
id="svg5"
|
10
|
-
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
11
|
-
sodipodi:docname="YourUsername.svg"
|
12
|
-
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
13
|
-
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
14
|
-
xmlns="http://www.w3.org/2000/svg"
|
15
|
-
xmlns:svg="http://www.w3.org/2000/svg">
|
16
|
-
<sodipodi:namedview
|
17
|
-
id="namedview7"
|
18
|
-
pagecolor="#ffffff"
|
19
|
-
bordercolor="#666666"
|
20
|
-
borderopacity="1.0"
|
21
|
-
inkscape:showpageshadow="2"
|
22
|
-
inkscape:pageopacity="0.0"
|
23
|
-
inkscape:pagecheckerboard="true"
|
24
|
-
inkscape:deskcolor="#d1d1d1"
|
25
|
-
inkscape:document-units="px"
|
26
|
-
showgrid="false"
|
27
|
-
inkscape:zoom="1.1191406"
|
28
|
-
inkscape:cx="-34.848168"
|
29
|
-
inkscape:cy="211.76964"
|
30
|
-
inkscape:window-width="3440"
|
31
|
-
inkscape:window-height="1371"
|
32
|
-
inkscape:window-x="0"
|
33
|
-
inkscape:window-y="0"
|
34
|
-
inkscape:window-maximized="1"
|
35
|
-
inkscape:current-layer="layer1" />
|
36
|
-
<defs
|
37
|
-
id="defs2">
|
38
|
-
<symbol
|
39
|
-
id="user-circle">
|
40
|
-
<title
|
41
|
-
id="user-circle-title">User Circle</title>
|
42
|
-
<path
|
43
|
-
d="M 256,8 C 119.033,8 8,119.033 8,256 8,392.967 119.033,504 256,504 392.967,504 504,392.967 504,256 504,119.033 392.967,8 256,8 Z M 144,208 c 0,-61.856 50.144,-112 112,-112 61.856,0 112,50.144 112,112 0,61.856 -50.144,112 -112,112 -61.856,0 -112,-50.144 -112,-112 z m 268.408,172.663 c -80.346,100.411 -232.375,100.53 -312.817,0 C 117.003,362.973 141.218,352 168,352 h 18.204 c 44.03,21.336 95.495,21.368 139.592,0 H 344 c 26.782,0 50.997,10.973 68.408,28.663 z"
|
44
|
-
id="path3183" />
|
45
|
-
</symbol>
|
46
|
-
</defs>
|
47
|
-
<g
|
48
|
-
inkscape:label="Layer 1"
|
49
|
-
inkscape:groupmode="layer"
|
50
|
-
id="layer1"
|
51
|
-
transform="translate(-28.920394,-28.395845)">
|
52
|
-
<g
|
53
|
-
id="use4705"
|
54
|
-
style="fill:#ffffff;stroke:none;stroke-width:1.9375;fill-opacity:1"
|
55
|
-
transform="matrix(0.13655914,0,0,0.13655914,27.827921,27.303372)">
|
56
|
-
<title
|
57
|
-
id="title367">User Circle</title>
|
58
|
-
<path
|
59
|
-
d="M 256,8 C 119.033,8 8,119.033 8,256 8,392.967 119.033,504 256,504 392.967,504 504,392.967 504,256 504,119.033 392.967,8 256,8 Z M 144,208 c 0,-61.856 50.144,-112 112,-112 61.856,0 112,50.144 112,112 0,61.856 -50.144,112 -112,112 -61.856,0 -112,-50.144 -112,-112 z m 268.408,172.663 c -80.346,100.411 -232.375,100.53 -312.817,0 C 117.003,362.973 141.218,352 168,352 h 18.204 c 44.03,21.336 95.495,21.368 139.592,0 H 344 c 26.782,0 50.997,10.973 68.408,28.663 z"
|
60
|
-
id="path369"
|
61
|
-
style="fill:#ffffff;fill-opacity:1" />
|
62
|
-
</g>
|
63
|
-
</g>
|
64
|
-
</svg>
|