changed : Réorganisation du menu et modifications pour pouvoir le fermer/ouvrir au survol
fixed : test pour savoir si translation est installé ; évite des erreurs sinon... added: ajout d'icones pour le menu
This commit is contained in:
parent
6e86eca538
commit
9fbba0d0ef
9 changed files with 554 additions and 43 deletions
|
@ -80,8 +80,7 @@
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row-reverse;
|
flex-direction: row-reverse;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
margin-left: 1em;
|
justify-content: end;
|
||||||
justify-content: space-evenly;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* .JSpopup */
|
/* .JSpopup */
|
||||||
|
|
|
@ -12,10 +12,10 @@
|
||||||
.dokuwiki div.plugin_translation {
|
.dokuwiki div.plugin_translation {
|
||||||
margin: 0 ;
|
margin: 0 ;
|
||||||
float: none;
|
float: none;
|
||||||
margin-bottom: 1em;
|
|
||||||
text-align: inherit;
|
text-align: inherit;
|
||||||
|
/*margin-bottom: 1em;
|
||||||
display:flex;
|
display:flex;
|
||||||
flex-direction: column;
|
flex-direction: column;*/
|
||||||
}
|
}
|
||||||
|
|
||||||
.dokuwiki div.plugin_translation ul li a.wikilink1:link, .dokuwiki div.plugin_translation ul li a.wikilink1:hover, .dokuwiki div.plugin_translation ul li a.wikilink1:active, .dokuwiki div.plugin_translation ul li a.wikilink1:visited {
|
.dokuwiki div.plugin_translation ul li a.wikilink1:link, .dokuwiki div.plugin_translation ul li a.wikilink1:hover, .dokuwiki div.plugin_translation ul li a.wikilink1:active, .dokuwiki div.plugin_translation ul li a.wikilink1:visited {
|
||||||
|
@ -38,6 +38,13 @@
|
||||||
background-color: @ini_neutral4;
|
background-color: @ini_neutral4;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.kh_translate {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
height:1em;
|
||||||
|
margin-bottom: 0.5em;
|
||||||
|
}
|
||||||
|
|
||||||
/*____________ Config manager ____________*/
|
/*____________ Config manager ____________*/
|
||||||
#config__manager fieldset {
|
#config__manager fieldset {
|
||||||
background-color: @ini_background;
|
background-color: @ini_background;
|
||||||
|
|
|
@ -4,21 +4,83 @@ So, navbar too, and breadcrumbs.
|
||||||
**/
|
**/
|
||||||
/*____________ Navtool ____________*/
|
/*____________ Navtool ____________*/
|
||||||
|
|
||||||
|
.navtoolwrap {
|
||||||
|
width: @ini_navtool_width;
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
|
||||||
.navtool {
|
.navtool {
|
||||||
width: @ini_navtool_width;
|
max-width:@ini_navtool_width;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
margin-top: 3.5em;
|
margin-top: 3.5em;
|
||||||
font-size: .875em;
|
font-size: .875em;
|
||||||
position: sticky;
|
position: sticky;
|
||||||
|
align-self: flex-start;
|
||||||
top: 1em;
|
top: 1em;
|
||||||
|
|
||||||
|
img {
|
||||||
|
width: 1em;
|
||||||
|
height: 1em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Afficher/cacher le détail du menu au survol */
|
||||||
|
.navtool {
|
||||||
|
#qsearch__in {
|
||||||
|
display:none;
|
||||||
|
}
|
||||||
|
.no {
|
||||||
|
flex-direction: row;
|
||||||
|
justify-content: end !important;
|
||||||
|
}
|
||||||
|
span {
|
||||||
|
display:none;
|
||||||
|
}
|
||||||
|
.plugin_translation {
|
||||||
|
display:none ;
|
||||||
|
}
|
||||||
|
.cur {
|
||||||
|
display:none;
|
||||||
|
}
|
||||||
|
.user a {
|
||||||
|
display:none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.navtool:hover {
|
||||||
|
width: @ini_navtool_width;
|
||||||
|
#qsearch__in {
|
||||||
|
display:inline;
|
||||||
|
max-width: 90%;
|
||||||
|
}
|
||||||
|
span {
|
||||||
|
margin-left: 3px;
|
||||||
|
display:inline;
|
||||||
|
}
|
||||||
|
.plugin_translation {
|
||||||
|
display:flex ;
|
||||||
|
}
|
||||||
|
.plugin_translation span {
|
||||||
|
display:none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cur {
|
||||||
|
display:inline;
|
||||||
|
}
|
||||||
|
.trace {
|
||||||
|
display:inline;
|
||||||
|
}
|
||||||
|
form.search div.no {
|
||||||
|
}
|
||||||
|
.user a {
|
||||||
|
display:block;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.bartool {
|
.bartool {
|
||||||
background-color: @ini_background;
|
background-color: @ini_background;
|
||||||
padding: 0 1em;
|
padding: 0 1em;
|
||||||
|
|
||||||
hr {
|
hr {
|
||||||
margin:1em 0;
|
margin:1em 0;
|
||||||
}
|
}
|
||||||
|
@ -40,27 +102,31 @@ So, navbar too, and breadcrumbs.
|
||||||
list-style: none;
|
list-style: none;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
display: flex;
|
display: flex;
|
||||||
}
|
|
||||||
li a {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: row-reverse;
|
|
||||||
justify-content: end;
|
|
||||||
|
|
||||||
span {
|
a {
|
||||||
margin-left: 3px;
|
display: flex;
|
||||||
|
flex-direction: row-reverse;
|
||||||
|
justify-content: end;
|
||||||
|
/* add height to prevent jumping on hover */
|
||||||
|
height:1.5em;
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.user {
|
.user {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
/* add height to prevent jumping on hover */
|
||||||
|
height:1.5em;
|
||||||
span {
|
span {
|
||||||
margin-right: 0.3em;
|
margin: 0 0.3em;
|
||||||
margin-bottom: 0.5em;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* highlight selected tool */
|
/* highlight selected tool */
|
||||||
.mode_admin a.action.admin,
|
.mode_admin a.action.admin,
|
||||||
.mode_login a.action.login,
|
.mode_login a.action.login,
|
||||||
|
@ -78,14 +144,9 @@ So, navbar too, and breadcrumbs.
|
||||||
/*____________ Search ____________*/
|
/*____________ Search ____________*/
|
||||||
/* juste the tool in navbar ; result search are in _search.css */
|
/* juste the tool in navbar ; result search are in _search.css */
|
||||||
|
|
||||||
.dokuwiki div.searchtool {
|
|
||||||
/*float: right;*/
|
|
||||||
/*width: 29%;*/
|
|
||||||
}
|
|
||||||
|
|
||||||
form.search {
|
form.search {
|
||||||
display: block;
|
display: block;
|
||||||
margin-bottom: 0.5em;
|
height: 3em;
|
||||||
input {
|
input {
|
||||||
padding: .35em;
|
padding: .35em;
|
||||||
max-width: 95%;
|
max-width: 95%;
|
||||||
|
@ -97,9 +158,9 @@ form.search {
|
||||||
width: 1.2em;
|
width: 1.2em;
|
||||||
height: 14px;
|
height: 14px;
|
||||||
text-indent: -99999px;
|
text-indent: -99999px;
|
||||||
margin-left: -20px;
|
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
margin: 0.6em 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
98
images/compass.svg
Normal file
98
images/compass.svg
Normal file
|
@ -0,0 +1,98 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg
|
||||||
|
sodipodi:docname="menu_khum1.svg"
|
||||||
|
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||||
|
id="svg1101"
|
||||||
|
version="1.1"
|
||||||
|
viewBox="0 0 14.111084 14.111099"
|
||||||
|
height="14.111099mm"
|
||||||
|
width="14.111084mm"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||||
|
<defs
|
||||||
|
id="defs1095">
|
||||||
|
<rect
|
||||||
|
id="rect835-3-6-3-3"
|
||||||
|
height="303.83588"
|
||||||
|
width="372.11261"
|
||||||
|
y="52.104076"
|
||||||
|
x="20.339798" />
|
||||||
|
</defs>
|
||||||
|
<sodipodi:namedview
|
||||||
|
inkscape:snap-global="false"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:document-rotation="0"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
inkscape:document-units="mm"
|
||||||
|
inkscape:cy="-128.95832"
|
||||||
|
inkscape:cx="508.73083"
|
||||||
|
inkscape:zoom="0.49497475"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
borderopacity="1.0"
|
||||||
|
bordercolor="#666666"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
id="base"
|
||||||
|
inkscape:showpageshadow="2"
|
||||||
|
inkscape:pagecheckerboard="0"
|
||||||
|
inkscape:deskcolor="#d1d1d1" />
|
||||||
|
<metadata
|
||||||
|
id="metadata1098">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title />
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
id="layer1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
inkscape:label="Calque 1"
|
||||||
|
transform="translate(-283.25361,176.90289)">
|
||||||
|
<g
|
||||||
|
aria-label="
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
"
|
||||||
|
transform="translate(262.91377,-291.69543)"
|
||||||
|
id="text833-6-2-6-6"
|
||||||
|
style="font-size:14.1111px;line-height:100%;font-family:Alegreya;-inkscape-font-specification:Alegreya;letter-spacing:0px;word-spacing:0px;white-space:pre;shape-inside:url(#rect835-3-6-3-3);display:inline;fill:#8530bf;stroke-width:0.264583px">
|
||||||
|
<path
|
||||||
|
d="m 28.371832,76.82357 q 1.039433,-1.039434 1.039433,-2.496216 0,-1.456782 -1.039433,-2.488341 -1.03156,-1.039434 -2.488342,-1.039434 -1.456782,0 -2.496216,1.039434 -1.031559,1.031559 -1.031559,2.488341 0,1.456782 1.031559,2.496216 1.039434,1.031559 2.496216,1.031559 1.456782,0 2.488342,-1.031559 z m 5.071176,4.055367 q 0,0.409473 -0.299231,0.708704 -0.299231,0.299231 -0.708705,0.299231 -0.425222,0 -0.708704,-0.299231 l -2.700953,-2.693078 q -1.409535,0.976438 -3.141925,0.976438 -1.126053,0 -2.157612,-0.433098 -1.023685,-0.440971 -1.771762,-1.181174 -0.740203,-0.748078 -1.181175,-1.771762 -0.433097,-1.031559 -0.433097,-2.157613 0,-1.126053 0.433097,-2.149738 0.440972,-1.031559 1.181175,-1.771762 0.748077,-0.748077 1.771762,-1.181174 1.031559,-0.440972 2.157612,-0.440972 1.126053,0 2.149738,0.440972 1.031559,0.433097 1.771762,1.181174 0.748077,0.740203 1.181175,1.771762 0.440972,1.023685 0.440972,2.149738 0,1.73239 -0.976438,3.141925 l 2.700953,2.700953 q 0.291356,0.291356 0.291356,0.708705 z"
|
||||||
|
style="font-family:forkawesome;-inkscape-font-specification:forkawesome;shape-inside:url(#rect835-3-6-3-3);fill:#000000;fill-opacity:1"
|
||||||
|
id="path3465"
|
||||||
|
inkscape:export-filename="search.svg"
|
||||||
|
inkscape:export-xdpi="96.0026"
|
||||||
|
inkscape:export-ydpi="96.0026" />
|
||||||
|
<path
|
||||||
|
d="m 33.789486,85.786754 q 0.07875,0.07874 0.07875,0.181114 0,0.102368 -0.07875,0.181113 l -1.110304,1.110305 q -0.220486,0.220485 -0.535466,0.220485 H 21.560391 q -0.204737,0 -0.354352,-0.149615 -0.149616,-0.149615 -0.149616,-0.354352 v -2.015872 q 0,-0.204737 0.149616,-0.354352 0.149615,-0.149616 0.354352,-0.149616 h 4.535711 v -0.503968 q 0,-0.204737 0.149615,-0.354352 0.149616,-0.149615 0.354353,-0.149615 h 1.007935 q 0.204737,0 0.354353,0.149615 0.149615,0.149615 0.149615,0.354352 v 0.503968 h 4.031743 q 0.31498,0 0.535466,0.220486 z m -7.693384,7.236664 h 2.015871 v 4.031743 q 0,0.204737 -0.149615,0.354352 -0.149616,0.149616 -0.354353,0.149616 H 26.60007 q -0.204737,0 -0.354353,-0.149616 -0.149615,-0.149615 -0.149615,-0.354352 z m 6.551582,-3.527775 q 0.204737,0 0.354352,0.149615 0.149616,0.149616 0.149616,0.354353 v 2.015871 q 0,0.204737 -0.149616,0.354353 -0.149615,0.149615 -0.354352,0.149615 H 22.064359 q -0.31498,0 -0.535466,-0.220486 L 20.418589,91.18866 q -0.07875,-0.07874 -0.07875,-0.181113 0,-0.102369 0.07875,-0.181114 l 1.110304,-1.110304 q 0.220486,-0.220486 0.535466,-0.220486 h 4.031743 v -1.511904 h 2.015871 v 1.511904 z"
|
||||||
|
style="font-family:forkawesome;-inkscape-font-specification:forkawesome;shape-inside:url(#rect835-3-6-3-3);fill:#000000;fill-opacity:1"
|
||||||
|
id="path3467"
|
||||||
|
inkscape:export-filename="youarehere.svg"
|
||||||
|
inkscape:export-xdpi="96.0026"
|
||||||
|
inkscape:export-ydpi="96.0026" />
|
||||||
|
<path
|
||||||
|
d="m 25.489765,107.60899 q -0.0079,0.0236 -0.102368,0 -0.08662,-0.0315 -0.24411,-0.0945 l -0.15749,-0.0709 q -0.346477,-0.15749 -0.685081,-0.38585 -0.05512,-0.0394 -0.322854,-0.24411 -0.267733,-0.21261 -0.299231,-0.22836 -0.527592,0.81107 -1.055183,1.42528 -0.637834,0.74808 -0.826822,0.8662 -0.0315,0.0157 -0.15749,0.0315 -0.118118,0.0157 -0.141741,0 0.04725,-0.0315 0.645709,-0.72446 0.165364,-0.18899 0.669332,-0.90557 0.511842,-0.71657 0.622085,-0.92919 0.133867,-0.23623 0.4016,-0.7717 0.267733,-0.54334 0.283482,-0.61421 -0.063,-0.008 -0.866195,0.25986 -0.063,0.0157 -0.220486,0.063 -0.149615,0.0394 -0.267733,0.0709 -0.118117,0.0315 -0.133866,0.0394 -0.01575,0.0157 -0.01575,0.0866 0,0.063 -0.0079,0.0709 -0.03937,0.0787 -0.244109,0.11812 -0.181114,0.0551 -0.370102,0 -0.141741,-0.0315 -0.220486,-0.16537 -0.0315,-0.0472 -0.03937,-0.18111 0.04725,-0.0157 0.188988,-0.0394 0.149615,-0.0236 0.236235,-0.0472 0.456721,-0.12599 0.826822,-0.25198 0.78745,-0.27561 0.803199,-0.27561 0.07875,-0.0157 0.338603,-0.14962 0.259859,-0.14174 0.346478,-0.17324 0.07087,-0.0236 0.165365,-0.063 0.102368,-0.0394 0.118117,-0.0394 0.01575,-0.008 0.04725,0 0.01575,0.0945 -0.0079,0.25985 0,0.0157 -0.102369,0.21262 -0.09449,0.19686 -0.204737,0.42522 -0.110243,0.22048 -0.133866,0.25986 -0.196863,0.39372 -0.606337,1.03156 l 0.503968,0.22048 q 0.09449,0.0473 0.582713,0.25199 0.496093,0.20473 0.535466,0.22048 0.0315,0.008 0.07874,0.20474 0.05512,0.18899 0.03937,0.23623 z m -1.614272,-3.827 q 0.02362,0.11812 -0.0315,0.22048 -0.09449,0.18112 -0.393725,0.29923 -0.236235,0.0945 -0.472469,0.0945 -0.204737,-0.0236 -0.385851,-0.20474 -0.110243,-0.11812 -0.141741,-0.32285 l 0.0079,-0.0236 q 0.02362,0.0236 0.149615,0.0394 0.133867,0.0157 0.212612,0 0.07875,-0.0157 0.45672,-0.126 0.283482,-0.0945 0.433098,-0.11024 0.133866,0 0.165364,0.13387 z m 5.4964,1.01581 0.496093,1.78751 -1.094555,-0.33073 z m -8.724944,6.2996 5.464902,-1.82689 v -8.12648 l -5.464902,1.83476 z m 9.772252,-2.49622 0.803199,0.24411 -1.425284,-5.17355 -0.78745,-0.2441 -1.700892,4.22073 0.803199,0.24411 0.354353,-0.8662 1.661519,0.51184 z m -3.960872,-7.57527 4.512087,1.44891 v -2.992308 z m 2.448968,10.41796 1.244171,0.10237 -0.425223,1.25992 -0.31498,-0.51971 q -1.023684,0.65358 -2.173361,0.85044 -0.456721,0.0945 -0.716579,0.0945 h -0.661458 q -0.622086,0 -1.5749,-0.30711 -0.94494,-0.30711 -1.441033,-0.66933 -0.063,-0.0551 -0.063,-0.12599 0,-0.063 0.03937,-0.11025 0.03937,-0.0394 0.102368,-0.0394 0.0315,0 0.141741,0.0551 0.110243,0.063 0.236235,0.13387 0.133866,0.0709 0.165364,0.0866 0.574839,0.29135 1.252046,0.48034 0.685081,0.19686 1.24417,0.19686 0.748078,0 1.315041,-0.11811 0.566964,-0.11025 1.236297,-0.39373 0.118117,-0.0551 0.236234,-0.12599 0.125992,-0.063 0.267733,-0.14962 0.149616,-0.0787 0.228361,-0.12599 z m 3.527775,-8.49658 v 8.49658 l -6.094861,-1.93712 q -0.110243,0.0472 -2.952937,1.00793 -2.842693,0.95282 -2.897815,0.95282 -0.102368,0 -0.141741,-0.10237 0,-0.008 -0.0079,-0.0236 v -8.48871 q 0.02362,-0.0709 0.0315,-0.0787 0.03937,-0.0472 0.15749,-0.0866 0.834696,-0.2756 1.1733,-0.39372 v -3.0239 l 4.39397,1.55915 q 0.01575,0 1.259919,-0.4331 1.252046,-0.433094 2.488342,-0.850442 1.24417,-0.425223 1.275668,-0.425223 0.15749,0 0.15749,0.165364 v 3.291541 z"
|
||||||
|
style="font-family:forkawesome;-inkscape-font-specification:forkawesome;shape-inside:url(#rect835-3-6-3-3);fill:#000000;fill-opacity:1"
|
||||||
|
id="path3469"
|
||||||
|
inkscape:export-filename="lang.svg"
|
||||||
|
inkscape:export-xdpi="96.0026"
|
||||||
|
inkscape:export-ydpi="96.0026" />
|
||||||
|
<path
|
||||||
|
d="m 27.812742,121.82447 q 0,0.20474 -0.133866,0.35435 -0.125992,0.14962 -0.322855,0.14962 -0.204737,0 -0.354352,-0.126 -0.149616,-0.13386 -0.149616,-0.33072 0,-0.20474 0.133867,-0.35436 0.133866,-0.14961 0.330729,-0.14961 0.196862,0 0.346478,0.13386 0.149615,0.126 0.149615,0.32286 z m 0.118118,0.45672 2.756074,-4.57508 q -0.07087,0.063 -0.535466,0.49609 -0.456721,0.42522 -0.984312,0.91344 -0.527591,0.48822 -1.078806,1.00006 -0.543341,0.51184 -0.921317,0.87407 -0.370101,0.35435 -0.393724,0.4016 l -2.7482,4.56721 q 0.05512,-0.0551 0.527591,-0.48822 0.47247,-0.4331 0.992187,-0.91344 0.519717,-0.48822 1.070932,-1.00006 0.551214,-0.51972 0.921316,-0.87407 0.370101,-0.36223 0.393725,-0.4016 z m 5.0948,-0.4331 q 0,1.58278 -0.818948,2.92144 -0.02362,-0.0157 -0.133866,-0.0866 -0.110243,-0.0709 -0.212612,-0.12599 -0.09449,-0.063 -0.125992,-0.063 -0.102368,0 -0.102368,0.10237 0,0.0787 0.464595,0.34648 -0.582713,0.88194 -1.456782,1.50403 -0.866195,0.61421 -1.897754,0.86619 l -0.125992,-0.52759 q -0.0079,-0.0787 -0.118117,-0.0787 -0.03937,0 -0.063,0.0472 -0.02362,0.0394 -0.01575,0.0709 l 0.125992,0.53547 q -0.566964,0.11812 -1.149677,0.11812 -1.567025,0 -2.929313,-0.82682 0.0079,-0.0157 0.102368,-0.15749 0.09449,-0.14962 0.165365,-0.26774 0.07875,-0.11812 0.07875,-0.14961 0,-0.10237 -0.102369,-0.10237 -0.04725,0 -0.133866,0.11812 -0.08662,0.11024 -0.181114,0.26773 -0.08662,0.15749 -0.102368,0.18111 -0.889819,-0.59059 -1.511904,-1.47253 -0.622085,-0.88982 -0.866195,-1.92925 l 0.543341,-0.11812 q 0.07875,-0.0236 0.07875,-0.11812 0,-0.0394 -0.04725,-0.063 -0.03937,-0.0236 -0.07874,-0.0158 l -0.535466,0.11812 q -0.110243,-0.56697 -0.110243,-1.09456 0,-1.62214 0.85832,-2.98443 0.01575,0.008 0.141741,0.0945 0.133867,0.0866 0.236235,0.14962 0.110243,0.063 0.141741,0.063 0.102368,0 0.102368,-0.0945 0,-0.0472 -0.102368,-0.11812 -0.09449,-0.0787 -0.251984,-0.17324 l -0.15749,-0.0945 q 0.606336,-0.88195 1.48828,-1.48828 0.881944,-0.60634 1.921378,-0.84257 l 0.118117,0.52759 q 0.01575,0.0787 0.118118,0.0787 0.03937,0 0.063,-0.0394 0.02362,-0.0473 0.01575,-0.0866 l -0.118118,-0.51972 q 0.559089,-0.10236 1.055183,-0.10236 1.606397,0 2.984435,0.85832 -0.307106,0.44097 -0.307106,0.51184 0,0.10237 0.09449,0.10237 0.08662,0 0.377976,-0.50397 0.874069,0.59059 1.472531,1.46466 0.606336,0.87406 0.850446,1.89775 l -0.440972,0.0945 q -0.07874,0.0158 -0.07874,0.126 0,0.0394 0.03937,0.063 0.04725,0.0236 0.07874,0.0157 l 0.448847,-0.10237 q 0.110243,0.56697 0.110243,1.10243 z m 0.165364,2.44897 q 0.503968,-1.16543 0.503968,-2.44897 0,-1.28354 -0.503968,-2.44897 -0.496093,-1.16542 -1.338664,-2.00799 -0.842572,-0.84258 -2.007997,-1.33867 -1.165426,-0.50397 -2.448969,-0.50397 -1.283543,0 -2.448969,0.50397 -1.165426,0.49609 -2.007997,1.33867 -0.842571,0.84257 -1.346539,2.00799 -0.496093,1.16543 -0.496093,2.44897 0,1.28354 0.496093,2.44897 0.503968,1.16543 1.346539,2.008 0.842571,0.84257 2.007997,1.33866 1.165426,0.50397 2.448969,0.50397 1.283543,0 2.448969,-0.50397 1.165425,-0.49609 2.007997,-1.33866 0.842571,-0.84257 1.338664,-2.008 z m 0.700831,-5.18929 q 0.559089,1.30716 0.559089,2.74032 0,1.43316 -0.559089,2.74033 -0.55909,1.30716 -1.504029,2.2521 -0.94494,0.94494 -2.252107,1.50403 -1.307167,0.55909 -2.740325,0.55909 -1.433159,0 -2.740325,-0.55909 -1.307167,-0.55909 -2.252107,-1.50403 -0.94494,-0.94494 -1.504029,-2.2521 -0.559089,-1.30717 -0.559089,-2.74033 0,-1.43316 0.559089,-2.74032 0.559089,-1.30717 1.504029,-2.25211 0.94494,-0.94494 2.252107,-1.50403 1.307166,-0.55909 2.740325,-0.55909 1.433158,0 2.740325,0.55909 1.307167,0.55909 2.252107,1.50403 0.944939,0.94494 1.504029,2.25211 z"
|
||||||
|
style="font-family:forkawesome;-inkscape-font-specification:forkawesome;shape-inside:url(#rect835-3-6-3-3);fill:#000000;fill-opacity:1"
|
||||||
|
id="path3471" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 12 KiB |
95
images/lang.svg
Normal file
95
images/lang.svg
Normal file
|
@ -0,0 +1,95 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg
|
||||||
|
sodipodi:docname="menu_khum1.svg"
|
||||||
|
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||||
|
id="svg1101"
|
||||||
|
version="1.1"
|
||||||
|
viewBox="0 0 12.095245 14.111099"
|
||||||
|
height="14.111099mm"
|
||||||
|
width="12.095245mm"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||||
|
<defs
|
||||||
|
id="defs1095">
|
||||||
|
<rect
|
||||||
|
id="rect835-3-6-3-3"
|
||||||
|
height="303.83588"
|
||||||
|
width="372.11261"
|
||||||
|
y="52.104076"
|
||||||
|
x="20.339798" />
|
||||||
|
</defs>
|
||||||
|
<sodipodi:namedview
|
||||||
|
inkscape:snap-global="false"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:document-rotation="0"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
inkscape:document-units="mm"
|
||||||
|
inkscape:cy="-128.95832"
|
||||||
|
inkscape:cx="508.73083"
|
||||||
|
inkscape:zoom="0.49497475"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
borderopacity="1.0"
|
||||||
|
bordercolor="#666666"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
id="base"
|
||||||
|
inkscape:showpageshadow="2"
|
||||||
|
inkscape:pagecheckerboard="0"
|
||||||
|
inkscape:deskcolor="#d1d1d1" />
|
||||||
|
<metadata
|
||||||
|
id="metadata1098">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title />
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
id="layer1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
inkscape:label="Calque 1"
|
||||||
|
transform="translate(-283.25358,192.57514)">
|
||||||
|
<g
|
||||||
|
aria-label="
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
"
|
||||||
|
transform="translate(262.91377,-291.69543)"
|
||||||
|
id="text833-6-2-6-6"
|
||||||
|
style="font-size:14.1111px;line-height:100%;font-family:Alegreya;-inkscape-font-specification:Alegreya;letter-spacing:0px;word-spacing:0px;white-space:pre;shape-inside:url(#rect835-3-6-3-3);display:inline;fill:#8530bf;stroke-width:0.264583px">
|
||||||
|
<path
|
||||||
|
d="m 28.371832,76.82357 q 1.039433,-1.039434 1.039433,-2.496216 0,-1.456782 -1.039433,-2.488341 -1.03156,-1.039434 -2.488342,-1.039434 -1.456782,0 -2.496216,1.039434 -1.031559,1.031559 -1.031559,2.488341 0,1.456782 1.031559,2.496216 1.039434,1.031559 2.496216,1.031559 1.456782,0 2.488342,-1.031559 z m 5.071176,4.055367 q 0,0.409473 -0.299231,0.708704 -0.299231,0.299231 -0.708705,0.299231 -0.425222,0 -0.708704,-0.299231 l -2.700953,-2.693078 q -1.409535,0.976438 -3.141925,0.976438 -1.126053,0 -2.157612,-0.433098 -1.023685,-0.440971 -1.771762,-1.181174 -0.740203,-0.748078 -1.181175,-1.771762 -0.433097,-1.031559 -0.433097,-2.157613 0,-1.126053 0.433097,-2.149738 0.440972,-1.031559 1.181175,-1.771762 0.748077,-0.748077 1.771762,-1.181174 1.031559,-0.440972 2.157612,-0.440972 1.126053,0 2.149738,0.440972 1.031559,0.433097 1.771762,1.181174 0.748077,0.740203 1.181175,1.771762 0.440972,1.023685 0.440972,2.149738 0,1.73239 -0.976438,3.141925 l 2.700953,2.700953 q 0.291356,0.291356 0.291356,0.708705 z"
|
||||||
|
style="font-family:forkawesome;-inkscape-font-specification:forkawesome;shape-inside:url(#rect835-3-6-3-3);fill:#000000;fill-opacity:1"
|
||||||
|
id="path3465"
|
||||||
|
inkscape:export-filename="search.svg"
|
||||||
|
inkscape:export-xdpi="96.0026"
|
||||||
|
inkscape:export-ydpi="96.0026" />
|
||||||
|
<path
|
||||||
|
d="m 33.789486,85.786754 q 0.07875,0.07874 0.07875,0.181114 0,0.102368 -0.07875,0.181113 l -1.110304,1.110305 q -0.220486,0.220485 -0.535466,0.220485 H 21.560391 q -0.204737,0 -0.354352,-0.149615 -0.149616,-0.149615 -0.149616,-0.354352 v -2.015872 q 0,-0.204737 0.149616,-0.354352 0.149615,-0.149616 0.354352,-0.149616 h 4.535711 v -0.503968 q 0,-0.204737 0.149615,-0.354352 0.149616,-0.149615 0.354353,-0.149615 h 1.007935 q 0.204737,0 0.354353,0.149615 0.149615,0.149615 0.149615,0.354352 v 0.503968 h 4.031743 q 0.31498,0 0.535466,0.220486 z m -7.693384,7.236664 h 2.015871 v 4.031743 q 0,0.204737 -0.149615,0.354352 -0.149616,0.149616 -0.354353,0.149616 H 26.60007 q -0.204737,0 -0.354353,-0.149616 -0.149615,-0.149615 -0.149615,-0.354352 z m 6.551582,-3.527775 q 0.204737,0 0.354352,0.149615 0.149616,0.149616 0.149616,0.354353 v 2.015871 q 0,0.204737 -0.149616,0.354353 -0.149615,0.149615 -0.354352,0.149615 H 22.064359 q -0.31498,0 -0.535466,-0.220486 L 20.418589,91.18866 q -0.07875,-0.07874 -0.07875,-0.181113 0,-0.102369 0.07875,-0.181114 l 1.110304,-1.110304 q 0.220486,-0.220486 0.535466,-0.220486 h 4.031743 v -1.511904 h 2.015871 v 1.511904 z"
|
||||||
|
style="font-family:forkawesome;-inkscape-font-specification:forkawesome;shape-inside:url(#rect835-3-6-3-3);fill:#000000;fill-opacity:1"
|
||||||
|
id="path3467"
|
||||||
|
inkscape:export-filename="youarehere.svg"
|
||||||
|
inkscape:export-xdpi="96.0026"
|
||||||
|
inkscape:export-ydpi="96.0026" />
|
||||||
|
<path
|
||||||
|
d="m 25.489765,107.60899 q -0.0079,0.0236 -0.102368,0 -0.08662,-0.0315 -0.24411,-0.0945 l -0.15749,-0.0709 q -0.346477,-0.15749 -0.685081,-0.38585 -0.05512,-0.0394 -0.322854,-0.24411 -0.267733,-0.21261 -0.299231,-0.22836 -0.527592,0.81107 -1.055183,1.42528 -0.637834,0.74808 -0.826822,0.8662 -0.0315,0.0157 -0.15749,0.0315 -0.118118,0.0157 -0.141741,0 0.04725,-0.0315 0.645709,-0.72446 0.165364,-0.18899 0.669332,-0.90557 0.511842,-0.71657 0.622085,-0.92919 0.133867,-0.23623 0.4016,-0.7717 0.267733,-0.54334 0.283482,-0.61421 -0.063,-0.008 -0.866195,0.25986 -0.063,0.0157 -0.220486,0.063 -0.149615,0.0394 -0.267733,0.0709 -0.118117,0.0315 -0.133866,0.0394 -0.01575,0.0157 -0.01575,0.0866 0,0.063 -0.0079,0.0709 -0.03937,0.0787 -0.244109,0.11812 -0.181114,0.0551 -0.370102,0 -0.141741,-0.0315 -0.220486,-0.16537 -0.0315,-0.0472 -0.03937,-0.18111 0.04725,-0.0157 0.188988,-0.0394 0.149615,-0.0236 0.236235,-0.0472 0.456721,-0.12599 0.826822,-0.25198 0.78745,-0.27561 0.803199,-0.27561 0.07875,-0.0157 0.338603,-0.14962 0.259859,-0.14174 0.346478,-0.17324 0.07087,-0.0236 0.165365,-0.063 0.102368,-0.0394 0.118117,-0.0394 0.01575,-0.008 0.04725,0 0.01575,0.0945 -0.0079,0.25985 0,0.0157 -0.102369,0.21262 -0.09449,0.19686 -0.204737,0.42522 -0.110243,0.22048 -0.133866,0.25986 -0.196863,0.39372 -0.606337,1.03156 l 0.503968,0.22048 q 0.09449,0.0473 0.582713,0.25199 0.496093,0.20473 0.535466,0.22048 0.0315,0.008 0.07874,0.20474 0.05512,0.18899 0.03937,0.23623 z m -1.614272,-3.827 q 0.02362,0.11812 -0.0315,0.22048 -0.09449,0.18112 -0.393725,0.29923 -0.236235,0.0945 -0.472469,0.0945 -0.204737,-0.0236 -0.385851,-0.20474 -0.110243,-0.11812 -0.141741,-0.32285 l 0.0079,-0.0236 q 0.02362,0.0236 0.149615,0.0394 0.133867,0.0157 0.212612,0 0.07875,-0.0157 0.45672,-0.126 0.283482,-0.0945 0.433098,-0.11024 0.133866,0 0.165364,0.13387 z m 5.4964,1.01581 0.496093,1.78751 -1.094555,-0.33073 z m -8.724944,6.2996 5.464902,-1.82689 v -8.12648 l -5.464902,1.83476 z m 9.772252,-2.49622 0.803199,0.24411 -1.425284,-5.17355 -0.78745,-0.2441 -1.700892,4.22073 0.803199,0.24411 0.354353,-0.8662 1.661519,0.51184 z m -3.960872,-7.57527 4.512087,1.44891 v -2.992308 z m 2.448968,10.41796 1.244171,0.10237 -0.425223,1.25992 -0.31498,-0.51971 q -1.023684,0.65358 -2.173361,0.85044 -0.456721,0.0945 -0.716579,0.0945 h -0.661458 q -0.622086,0 -1.5749,-0.30711 -0.94494,-0.30711 -1.441033,-0.66933 -0.063,-0.0551 -0.063,-0.12599 0,-0.063 0.03937,-0.11025 0.03937,-0.0394 0.102368,-0.0394 0.0315,0 0.141741,0.0551 0.110243,0.063 0.236235,0.13387 0.133866,0.0709 0.165364,0.0866 0.574839,0.29135 1.252046,0.48034 0.685081,0.19686 1.24417,0.19686 0.748078,0 1.315041,-0.11811 0.566964,-0.11025 1.236297,-0.39373 0.118117,-0.0551 0.236234,-0.12599 0.125992,-0.063 0.267733,-0.14962 0.149616,-0.0787 0.228361,-0.12599 z m 3.527775,-8.49658 v 8.49658 l -6.094861,-1.93712 q -0.110243,0.0472 -2.952937,1.00793 -2.842693,0.95282 -2.897815,0.95282 -0.102368,0 -0.141741,-0.10237 0,-0.008 -0.0079,-0.0236 v -8.48871 q 0.02362,-0.0709 0.0315,-0.0787 0.03937,-0.0472 0.15749,-0.0866 0.834696,-0.2756 1.1733,-0.39372 v -3.0239 l 4.39397,1.55915 q 0.01575,0 1.259919,-0.4331 1.252046,-0.433094 2.488342,-0.850442 1.24417,-0.425223 1.275668,-0.425223 0.15749,0 0.15749,0.165364 v 3.291541 z"
|
||||||
|
style="font-family:forkawesome;-inkscape-font-specification:forkawesome;shape-inside:url(#rect835-3-6-3-3);fill:#000000;fill-opacity:1"
|
||||||
|
id="path3469" />
|
||||||
|
<path
|
||||||
|
d="m 27.812742,121.82447 q 0,0.20474 -0.133866,0.35435 -0.125992,0.14962 -0.322855,0.14962 -0.204737,0 -0.354352,-0.126 -0.149616,-0.13386 -0.149616,-0.33072 0,-0.20474 0.133867,-0.35436 0.133866,-0.14961 0.330729,-0.14961 0.196862,0 0.346478,0.13386 0.149615,0.126 0.149615,0.32286 z m 0.118118,0.45672 2.756074,-4.57508 q -0.07087,0.063 -0.535466,0.49609 -0.456721,0.42522 -0.984312,0.91344 -0.527591,0.48822 -1.078806,1.00006 -0.543341,0.51184 -0.921317,0.87407 -0.370101,0.35435 -0.393724,0.4016 l -2.7482,4.56721 q 0.05512,-0.0551 0.527591,-0.48822 0.47247,-0.4331 0.992187,-0.91344 0.519717,-0.48822 1.070932,-1.00006 0.551214,-0.51972 0.921316,-0.87407 0.370101,-0.36223 0.393725,-0.4016 z m 5.0948,-0.4331 q 0,1.58278 -0.818948,2.92144 -0.02362,-0.0157 -0.133866,-0.0866 -0.110243,-0.0709 -0.212612,-0.12599 -0.09449,-0.063 -0.125992,-0.063 -0.102368,0 -0.102368,0.10237 0,0.0787 0.464595,0.34648 -0.582713,0.88194 -1.456782,1.50403 -0.866195,0.61421 -1.897754,0.86619 l -0.125992,-0.52759 q -0.0079,-0.0787 -0.118117,-0.0787 -0.03937,0 -0.063,0.0472 -0.02362,0.0394 -0.01575,0.0709 l 0.125992,0.53547 q -0.566964,0.11812 -1.149677,0.11812 -1.567025,0 -2.929313,-0.82682 0.0079,-0.0157 0.102368,-0.15749 0.09449,-0.14962 0.165365,-0.26774 0.07875,-0.11812 0.07875,-0.14961 0,-0.10237 -0.102369,-0.10237 -0.04725,0 -0.133866,0.11812 -0.08662,0.11024 -0.181114,0.26773 -0.08662,0.15749 -0.102368,0.18111 -0.889819,-0.59059 -1.511904,-1.47253 -0.622085,-0.88982 -0.866195,-1.92925 l 0.543341,-0.11812 q 0.07875,-0.0236 0.07875,-0.11812 0,-0.0394 -0.04725,-0.063 -0.03937,-0.0236 -0.07874,-0.0158 l -0.535466,0.11812 q -0.110243,-0.56697 -0.110243,-1.09456 0,-1.62214 0.85832,-2.98443 0.01575,0.008 0.141741,0.0945 0.133867,0.0866 0.236235,0.14962 0.110243,0.063 0.141741,0.063 0.102368,0 0.102368,-0.0945 0,-0.0472 -0.102368,-0.11812 -0.09449,-0.0787 -0.251984,-0.17324 l -0.15749,-0.0945 q 0.606336,-0.88195 1.48828,-1.48828 0.881944,-0.60634 1.921378,-0.84257 l 0.118117,0.52759 q 0.01575,0.0787 0.118118,0.0787 0.03937,0 0.063,-0.0394 0.02362,-0.0473 0.01575,-0.0866 l -0.118118,-0.51972 q 0.559089,-0.10236 1.055183,-0.10236 1.606397,0 2.984435,0.85832 -0.307106,0.44097 -0.307106,0.51184 0,0.10237 0.09449,0.10237 0.08662,0 0.377976,-0.50397 0.874069,0.59059 1.472531,1.46466 0.606336,0.87406 0.850446,1.89775 l -0.440972,0.0945 q -0.07874,0.0158 -0.07874,0.126 0,0.0394 0.03937,0.063 0.04725,0.0236 0.07874,0.0157 l 0.448847,-0.10237 q 0.110243,0.56697 0.110243,1.10243 z m 0.165364,2.44897 q 0.503968,-1.16543 0.503968,-2.44897 0,-1.28354 -0.503968,-2.44897 -0.496093,-1.16542 -1.338664,-2.00799 -0.842572,-0.84258 -2.007997,-1.33867 -1.165426,-0.50397 -2.448969,-0.50397 -1.283543,0 -2.448969,0.50397 -1.165426,0.49609 -2.007997,1.33867 -0.842571,0.84257 -1.346539,2.00799 -0.496093,1.16543 -0.496093,2.44897 0,1.28354 0.496093,2.44897 0.503968,1.16543 1.346539,2.008 0.842571,0.84257 2.007997,1.33866 1.165426,0.50397 2.448969,0.50397 1.283543,0 2.448969,-0.50397 1.165425,-0.49609 2.007997,-1.33866 0.842571,-0.84257 1.338664,-2.008 z m 0.700831,-5.18929 q 0.559089,1.30716 0.559089,2.74032 0,1.43316 -0.559089,2.74033 -0.55909,1.30716 -1.504029,2.2521 -0.94494,0.94494 -2.252107,1.50403 -1.307167,0.55909 -2.740325,0.55909 -1.433159,0 -2.740325,-0.55909 -1.307167,-0.55909 -2.252107,-1.50403 -0.94494,-0.94494 -1.504029,-2.2521 -0.559089,-1.30717 -0.559089,-2.74033 0,-1.43316 0.559089,-2.74032 0.559089,-1.30717 1.504029,-2.25211 0.94494,-0.94494 2.252107,-1.50403 1.307166,-0.55909 2.740325,-0.55909 1.433158,0 2.740325,0.55909 1.307167,0.55909 2.252107,1.50403 0.944939,0.94494 1.504029,2.25211 z"
|
||||||
|
style="font-family:forkawesome;-inkscape-font-specification:forkawesome;shape-inside:url(#rect835-3-6-3-3);fill:#000000;fill-opacity:1"
|
||||||
|
id="path3471" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 12 KiB |
64
images/perso.svg
Normal file
64
images/perso.svg
Normal file
|
@ -0,0 +1,64 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg
|
||||||
|
sodipodi:docname="menu_khum1.svg"
|
||||||
|
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||||
|
id="svg1101"
|
||||||
|
version="1.1"
|
||||||
|
viewBox="0 0 10.117645 12.04361"
|
||||||
|
height="12.04361mm"
|
||||||
|
width="10.117645mm"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||||
|
<defs
|
||||||
|
id="defs1095" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
inkscape:snap-global="false"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:document-rotation="0"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
inkscape:document-units="mm"
|
||||||
|
inkscape:cy="-128.95832"
|
||||||
|
inkscape:cx="508.73083"
|
||||||
|
inkscape:zoom="0.49497475"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
borderopacity="1.0"
|
||||||
|
bordercolor="#666666"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
id="base"
|
||||||
|
inkscape:showpageshadow="2"
|
||||||
|
inkscape:pagecheckerboard="0"
|
||||||
|
inkscape:deskcolor="#d1d1d1" />
|
||||||
|
<metadata
|
||||||
|
id="metadata1098">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title />
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
id="g2293"
|
||||||
|
transform="translate(-369.00353,151.2213)">
|
||||||
|
<circle
|
||||||
|
style="opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.99012;stroke-miterlimit:2;paint-order:stroke fill markers"
|
||||||
|
id="path1023"
|
||||||
|
cx="374.06235"
|
||||||
|
cy="-148.20255"
|
||||||
|
r="3.018775" />
|
||||||
|
<path
|
||||||
|
style="opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:2;stroke-opacity:1;paint-order:stroke fill markers"
|
||||||
|
d="m 376.5739,-145.69101 c 1.54398,-0.0239 2.43459,1.46685 2.54725,4.27269 -0.0412,0.8966 -0.28026,1.74829 -1.34011,2.24062 h -7.35121 c -1.22423,-0.36852 -1.38597,-1.43985 -1.42629,-2.24062 0,-1.91397 0.60793,-4.39639 2.5768,-4.27269 0.35259,0.41448 1.59989,1.00302 2.4968,1.00302 0.89691,0 1.76922,-0.39844 2.49676,-1.00302 z"
|
||||||
|
id="path1700"
|
||||||
|
sodipodi:nodetypes="ccccccsc" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 2.3 KiB |
89
images/search.svg
Normal file
89
images/search.svg
Normal file
|
@ -0,0 +1,89 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg
|
||||||
|
sodipodi:docname="menu_khum1.svg"
|
||||||
|
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||||
|
id="svg1101"
|
||||||
|
version="1.1"
|
||||||
|
viewBox="0 0 13.10318 13.103149"
|
||||||
|
height="13.103149mm"
|
||||||
|
width="13.10318mm"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||||
|
<defs
|
||||||
|
id="defs1095">
|
||||||
|
<rect
|
||||||
|
id="rect835-3-6-3-3"
|
||||||
|
height="303.83588"
|
||||||
|
width="372.11261"
|
||||||
|
y="52.104076"
|
||||||
|
x="20.339798" />
|
||||||
|
</defs>
|
||||||
|
<sodipodi:namedview
|
||||||
|
inkscape:snap-global="false"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:document-rotation="0"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
inkscape:document-units="mm"
|
||||||
|
inkscape:cy="-128.95832"
|
||||||
|
inkscape:cx="508.73083"
|
||||||
|
inkscape:zoom="0.49497475"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
borderopacity="1.0"
|
||||||
|
bordercolor="#666666"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
id="base"
|
||||||
|
inkscape:showpageshadow="2"
|
||||||
|
inkscape:pagecheckerboard="0"
|
||||||
|
inkscape:deskcolor="#d1d1d1" />
|
||||||
|
<metadata
|
||||||
|
id="metadata1098">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title />
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
id="layer1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
inkscape:label="Calque 1"
|
||||||
|
transform="translate(-283.25361,222.91171)">
|
||||||
|
<g
|
||||||
|
aria-label="
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
"
|
||||||
|
transform="translate(262.91377,-291.69543)"
|
||||||
|
id="text833-6-2-6-6"
|
||||||
|
style="font-size:14.1111px;line-height:100%;font-family:Alegreya;-inkscape-font-specification:Alegreya;letter-spacing:0px;word-spacing:0px;white-space:pre;shape-inside:url(#rect835-3-6-3-3);display:inline;fill:#8530bf;stroke-width:0.264583px">
|
||||||
|
<path
|
||||||
|
d="m 28.371832,76.82357 q 1.039433,-1.039434 1.039433,-2.496216 0,-1.456782 -1.039433,-2.488341 -1.03156,-1.039434 -2.488342,-1.039434 -1.456782,0 -2.496216,1.039434 -1.031559,1.031559 -1.031559,2.488341 0,1.456782 1.031559,2.496216 1.039434,1.031559 2.496216,1.031559 1.456782,0 2.488342,-1.031559 z m 5.071176,4.055367 q 0,0.409473 -0.299231,0.708704 -0.299231,0.299231 -0.708705,0.299231 -0.425222,0 -0.708704,-0.299231 l -2.700953,-2.693078 q -1.409535,0.976438 -3.141925,0.976438 -1.126053,0 -2.157612,-0.433098 -1.023685,-0.440971 -1.771762,-1.181174 -0.740203,-0.748078 -1.181175,-1.771762 -0.433097,-1.031559 -0.433097,-2.157613 0,-1.126053 0.433097,-2.149738 0.440972,-1.031559 1.181175,-1.771762 0.748077,-0.748077 1.771762,-1.181174 1.031559,-0.440972 2.157612,-0.440972 1.126053,0 2.149738,0.440972 1.031559,0.433097 1.771762,1.181174 0.748077,0.740203 1.181175,1.771762 0.440972,1.023685 0.440972,2.149738 0,1.73239 -0.976438,3.141925 l 2.700953,2.700953 q 0.291356,0.291356 0.291356,0.708705 z"
|
||||||
|
style="font-family:forkawesome;-inkscape-font-specification:forkawesome;shape-inside:url(#rect835-3-6-3-3);fill:#000000;fill-opacity:1"
|
||||||
|
id="path3465" />
|
||||||
|
<path
|
||||||
|
d="m 33.789486,85.786754 q 0.07875,0.07874 0.07875,0.181114 0,0.102368 -0.07875,0.181113 l -1.110304,1.110305 q -0.220486,0.220485 -0.535466,0.220485 H 21.560391 q -0.204737,0 -0.354352,-0.149615 -0.149616,-0.149615 -0.149616,-0.354352 v -2.015872 q 0,-0.204737 0.149616,-0.354352 0.149615,-0.149616 0.354352,-0.149616 h 4.535711 v -0.503968 q 0,-0.204737 0.149615,-0.354352 0.149616,-0.149615 0.354353,-0.149615 h 1.007935 q 0.204737,0 0.354353,0.149615 0.149615,0.149615 0.149615,0.354352 v 0.503968 h 4.031743 q 0.31498,0 0.535466,0.220486 z m -7.693384,7.236664 h 2.015871 v 4.031743 q 0,0.204737 -0.149615,0.354352 -0.149616,0.149616 -0.354353,0.149616 H 26.60007 q -0.204737,0 -0.354353,-0.149616 -0.149615,-0.149615 -0.149615,-0.354352 z m 6.551582,-3.527775 q 0.204737,0 0.354352,0.149615 0.149616,0.149616 0.149616,0.354353 v 2.015871 q 0,0.204737 -0.149616,0.354353 -0.149615,0.149615 -0.354352,0.149615 H 22.064359 q -0.31498,0 -0.535466,-0.220486 L 20.418589,91.18866 q -0.07875,-0.07874 -0.07875,-0.181113 0,-0.102369 0.07875,-0.181114 l 1.110304,-1.110304 q 0.220486,-0.220486 0.535466,-0.220486 h 4.031743 v -1.511904 h 2.015871 v 1.511904 z"
|
||||||
|
style="font-family:forkawesome;-inkscape-font-specification:forkawesome;shape-inside:url(#rect835-3-6-3-3);fill:#000000;fill-opacity:1"
|
||||||
|
id="path3467" />
|
||||||
|
<path
|
||||||
|
d="m 25.489765,107.60899 q -0.0079,0.0236 -0.102368,0 -0.08662,-0.0315 -0.24411,-0.0945 l -0.15749,-0.0709 q -0.346477,-0.15749 -0.685081,-0.38585 -0.05512,-0.0394 -0.322854,-0.24411 -0.267733,-0.21261 -0.299231,-0.22836 -0.527592,0.81107 -1.055183,1.42528 -0.637834,0.74808 -0.826822,0.8662 -0.0315,0.0157 -0.15749,0.0315 -0.118118,0.0157 -0.141741,0 0.04725,-0.0315 0.645709,-0.72446 0.165364,-0.18899 0.669332,-0.90557 0.511842,-0.71657 0.622085,-0.92919 0.133867,-0.23623 0.4016,-0.7717 0.267733,-0.54334 0.283482,-0.61421 -0.063,-0.008 -0.866195,0.25986 -0.063,0.0157 -0.220486,0.063 -0.149615,0.0394 -0.267733,0.0709 -0.118117,0.0315 -0.133866,0.0394 -0.01575,0.0157 -0.01575,0.0866 0,0.063 -0.0079,0.0709 -0.03937,0.0787 -0.244109,0.11812 -0.181114,0.0551 -0.370102,0 -0.141741,-0.0315 -0.220486,-0.16537 -0.0315,-0.0472 -0.03937,-0.18111 0.04725,-0.0157 0.188988,-0.0394 0.149615,-0.0236 0.236235,-0.0472 0.456721,-0.12599 0.826822,-0.25198 0.78745,-0.27561 0.803199,-0.27561 0.07875,-0.0157 0.338603,-0.14962 0.259859,-0.14174 0.346478,-0.17324 0.07087,-0.0236 0.165365,-0.063 0.102368,-0.0394 0.118117,-0.0394 0.01575,-0.008 0.04725,0 0.01575,0.0945 -0.0079,0.25985 0,0.0157 -0.102369,0.21262 -0.09449,0.19686 -0.204737,0.42522 -0.110243,0.22048 -0.133866,0.25986 -0.196863,0.39372 -0.606337,1.03156 l 0.503968,0.22048 q 0.09449,0.0473 0.582713,0.25199 0.496093,0.20473 0.535466,0.22048 0.0315,0.008 0.07874,0.20474 0.05512,0.18899 0.03937,0.23623 z m -1.614272,-3.827 q 0.02362,0.11812 -0.0315,0.22048 -0.09449,0.18112 -0.393725,0.29923 -0.236235,0.0945 -0.472469,0.0945 -0.204737,-0.0236 -0.385851,-0.20474 -0.110243,-0.11812 -0.141741,-0.32285 l 0.0079,-0.0236 q 0.02362,0.0236 0.149615,0.0394 0.133867,0.0157 0.212612,0 0.07875,-0.0157 0.45672,-0.126 0.283482,-0.0945 0.433098,-0.11024 0.133866,0 0.165364,0.13387 z m 5.4964,1.01581 0.496093,1.78751 -1.094555,-0.33073 z m -8.724944,6.2996 5.464902,-1.82689 v -8.12648 l -5.464902,1.83476 z m 9.772252,-2.49622 0.803199,0.24411 -1.425284,-5.17355 -0.78745,-0.2441 -1.700892,4.22073 0.803199,0.24411 0.354353,-0.8662 1.661519,0.51184 z m -3.960872,-7.57527 4.512087,1.44891 v -2.992308 z m 2.448968,10.41796 1.244171,0.10237 -0.425223,1.25992 -0.31498,-0.51971 q -1.023684,0.65358 -2.173361,0.85044 -0.456721,0.0945 -0.716579,0.0945 h -0.661458 q -0.622086,0 -1.5749,-0.30711 -0.94494,-0.30711 -1.441033,-0.66933 -0.063,-0.0551 -0.063,-0.12599 0,-0.063 0.03937,-0.11025 0.03937,-0.0394 0.102368,-0.0394 0.0315,0 0.141741,0.0551 0.110243,0.063 0.236235,0.13387 0.133866,0.0709 0.165364,0.0866 0.574839,0.29135 1.252046,0.48034 0.685081,0.19686 1.24417,0.19686 0.748078,0 1.315041,-0.11811 0.566964,-0.11025 1.236297,-0.39373 0.118117,-0.0551 0.236234,-0.12599 0.125992,-0.063 0.267733,-0.14962 0.149616,-0.0787 0.228361,-0.12599 z m 3.527775,-8.49658 v 8.49658 l -6.094861,-1.93712 q -0.110243,0.0472 -2.952937,1.00793 -2.842693,0.95282 -2.897815,0.95282 -0.102368,0 -0.141741,-0.10237 0,-0.008 -0.0079,-0.0236 v -8.48871 q 0.02362,-0.0709 0.0315,-0.0787 0.03937,-0.0472 0.15749,-0.0866 0.834696,-0.2756 1.1733,-0.39372 v -3.0239 l 4.39397,1.55915 q 0.01575,0 1.259919,-0.4331 1.252046,-0.433094 2.488342,-0.850442 1.24417,-0.425223 1.275668,-0.425223 0.15749,0 0.15749,0.165364 v 3.291541 z"
|
||||||
|
style="font-family:forkawesome;-inkscape-font-specification:forkawesome;shape-inside:url(#rect835-3-6-3-3);fill:#000000;fill-opacity:1"
|
||||||
|
id="path3469" />
|
||||||
|
<path
|
||||||
|
d="m 27.812742,121.82447 q 0,0.20474 -0.133866,0.35435 -0.125992,0.14962 -0.322855,0.14962 -0.204737,0 -0.354352,-0.126 -0.149616,-0.13386 -0.149616,-0.33072 0,-0.20474 0.133867,-0.35436 0.133866,-0.14961 0.330729,-0.14961 0.196862,0 0.346478,0.13386 0.149615,0.126 0.149615,0.32286 z m 0.118118,0.45672 2.756074,-4.57508 q -0.07087,0.063 -0.535466,0.49609 -0.456721,0.42522 -0.984312,0.91344 -0.527591,0.48822 -1.078806,1.00006 -0.543341,0.51184 -0.921317,0.87407 -0.370101,0.35435 -0.393724,0.4016 l -2.7482,4.56721 q 0.05512,-0.0551 0.527591,-0.48822 0.47247,-0.4331 0.992187,-0.91344 0.519717,-0.48822 1.070932,-1.00006 0.551214,-0.51972 0.921316,-0.87407 0.370101,-0.36223 0.393725,-0.4016 z m 5.0948,-0.4331 q 0,1.58278 -0.818948,2.92144 -0.02362,-0.0157 -0.133866,-0.0866 -0.110243,-0.0709 -0.212612,-0.12599 -0.09449,-0.063 -0.125992,-0.063 -0.102368,0 -0.102368,0.10237 0,0.0787 0.464595,0.34648 -0.582713,0.88194 -1.456782,1.50403 -0.866195,0.61421 -1.897754,0.86619 l -0.125992,-0.52759 q -0.0079,-0.0787 -0.118117,-0.0787 -0.03937,0 -0.063,0.0472 -0.02362,0.0394 -0.01575,0.0709 l 0.125992,0.53547 q -0.566964,0.11812 -1.149677,0.11812 -1.567025,0 -2.929313,-0.82682 0.0079,-0.0157 0.102368,-0.15749 0.09449,-0.14962 0.165365,-0.26774 0.07875,-0.11812 0.07875,-0.14961 0,-0.10237 -0.102369,-0.10237 -0.04725,0 -0.133866,0.11812 -0.08662,0.11024 -0.181114,0.26773 -0.08662,0.15749 -0.102368,0.18111 -0.889819,-0.59059 -1.511904,-1.47253 -0.622085,-0.88982 -0.866195,-1.92925 l 0.543341,-0.11812 q 0.07875,-0.0236 0.07875,-0.11812 0,-0.0394 -0.04725,-0.063 -0.03937,-0.0236 -0.07874,-0.0158 l -0.535466,0.11812 q -0.110243,-0.56697 -0.110243,-1.09456 0,-1.62214 0.85832,-2.98443 0.01575,0.008 0.141741,0.0945 0.133867,0.0866 0.236235,0.14962 0.110243,0.063 0.141741,0.063 0.102368,0 0.102368,-0.0945 0,-0.0472 -0.102368,-0.11812 -0.09449,-0.0787 -0.251984,-0.17324 l -0.15749,-0.0945 q 0.606336,-0.88195 1.48828,-1.48828 0.881944,-0.60634 1.921378,-0.84257 l 0.118117,0.52759 q 0.01575,0.0787 0.118118,0.0787 0.03937,0 0.063,-0.0394 0.02362,-0.0473 0.01575,-0.0866 l -0.118118,-0.51972 q 0.559089,-0.10236 1.055183,-0.10236 1.606397,0 2.984435,0.85832 -0.307106,0.44097 -0.307106,0.51184 0,0.10237 0.09449,0.10237 0.08662,0 0.377976,-0.50397 0.874069,0.59059 1.472531,1.46466 0.606336,0.87406 0.850446,1.89775 l -0.440972,0.0945 q -0.07874,0.0158 -0.07874,0.126 0,0.0394 0.03937,0.063 0.04725,0.0236 0.07874,0.0157 l 0.448847,-0.10237 q 0.110243,0.56697 0.110243,1.10243 z m 0.165364,2.44897 q 0.503968,-1.16543 0.503968,-2.44897 0,-1.28354 -0.503968,-2.44897 -0.496093,-1.16542 -1.338664,-2.00799 -0.842572,-0.84258 -2.007997,-1.33867 -1.165426,-0.50397 -2.448969,-0.50397 -1.283543,0 -2.448969,0.50397 -1.165426,0.49609 -2.007997,1.33867 -0.842571,0.84257 -1.346539,2.00799 -0.496093,1.16543 -0.496093,2.44897 0,1.28354 0.496093,2.44897 0.503968,1.16543 1.346539,2.008 0.842571,0.84257 2.007997,1.33866 1.165426,0.50397 2.448969,0.50397 1.283543,0 2.448969,-0.50397 1.165425,-0.49609 2.007997,-1.33866 0.842571,-0.84257 1.338664,-2.008 z m 0.700831,-5.18929 q 0.559089,1.30716 0.559089,2.74032 0,1.43316 -0.559089,2.74033 -0.55909,1.30716 -1.504029,2.2521 -0.94494,0.94494 -2.252107,1.50403 -1.307167,0.55909 -2.740325,0.55909 -1.433159,0 -2.740325,-0.55909 -1.307167,-0.55909 -2.252107,-1.50403 -0.94494,-0.94494 -1.504029,-2.2521 -0.559089,-1.30717 -0.559089,-2.74033 0,-1.43316 0.559089,-2.74032 0.559089,-1.30717 1.504029,-2.25211 0.94494,-0.94494 2.252107,-1.50403 1.307166,-0.55909 2.740325,-0.55909 1.433158,0 2.740325,0.55909 1.307167,0.55909 2.252107,1.50403 0.944939,0.94494 1.504029,2.25211 z"
|
||||||
|
style="font-family:forkawesome;-inkscape-font-specification:forkawesome;shape-inside:url(#rect835-3-6-3-3);fill:#000000;fill-opacity:1"
|
||||||
|
id="path3471" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 12 KiB |
92
images/youarehere.svg
Normal file
92
images/youarehere.svg
Normal file
|
@ -0,0 +1,92 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg
|
||||||
|
sodipodi:docname="menu_khum1.svg"
|
||||||
|
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||||
|
id="svg1101"
|
||||||
|
version="1.1"
|
||||||
|
viewBox="0 0 13.528412 14.111084"
|
||||||
|
height="14.111084mm"
|
||||||
|
width="13.528412mm"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||||
|
<defs
|
||||||
|
id="defs1095">
|
||||||
|
<rect
|
||||||
|
id="rect835-3-6-3-3"
|
||||||
|
height="303.83588"
|
||||||
|
width="372.11261"
|
||||||
|
y="52.104076"
|
||||||
|
x="20.339798" />
|
||||||
|
</defs>
|
||||||
|
<sodipodi:namedview
|
||||||
|
inkscape:snap-global="false"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:document-rotation="0"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
inkscape:document-units="mm"
|
||||||
|
inkscape:cy="-128.95832"
|
||||||
|
inkscape:cx="508.73083"
|
||||||
|
inkscape:zoom="0.49497475"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
borderopacity="1.0"
|
||||||
|
bordercolor="#666666"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
id="base"
|
||||||
|
inkscape:showpageshadow="2"
|
||||||
|
inkscape:pagecheckerboard="0"
|
||||||
|
inkscape:deskcolor="#d1d1d1" />
|
||||||
|
<metadata
|
||||||
|
id="metadata1098">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title />
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
id="layer1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
inkscape:label="Calque 1"
|
||||||
|
transform="translate(-283.25361,208.2474)">
|
||||||
|
<g
|
||||||
|
aria-label="
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
"
|
||||||
|
transform="translate(262.91377,-291.69543)"
|
||||||
|
id="text833-6-2-6-6"
|
||||||
|
style="font-size:14.1111px;line-height:100%;font-family:Alegreya;-inkscape-font-specification:Alegreya;letter-spacing:0px;word-spacing:0px;white-space:pre;shape-inside:url(#rect835-3-6-3-3);display:inline;fill:#8530bf;stroke-width:0.264583px">
|
||||||
|
<path
|
||||||
|
d="m 28.371832,76.82357 q 1.039433,-1.039434 1.039433,-2.496216 0,-1.456782 -1.039433,-2.488341 -1.03156,-1.039434 -2.488342,-1.039434 -1.456782,0 -2.496216,1.039434 -1.031559,1.031559 -1.031559,2.488341 0,1.456782 1.031559,2.496216 1.039434,1.031559 2.496216,1.031559 1.456782,0 2.488342,-1.031559 z m 5.071176,4.055367 q 0,0.409473 -0.299231,0.708704 -0.299231,0.299231 -0.708705,0.299231 -0.425222,0 -0.708704,-0.299231 l -2.700953,-2.693078 q -1.409535,0.976438 -3.141925,0.976438 -1.126053,0 -2.157612,-0.433098 -1.023685,-0.440971 -1.771762,-1.181174 -0.740203,-0.748078 -1.181175,-1.771762 -0.433097,-1.031559 -0.433097,-2.157613 0,-1.126053 0.433097,-2.149738 0.440972,-1.031559 1.181175,-1.771762 0.748077,-0.748077 1.771762,-1.181174 1.031559,-0.440972 2.157612,-0.440972 1.126053,0 2.149738,0.440972 1.031559,0.433097 1.771762,1.181174 0.748077,0.740203 1.181175,1.771762 0.440972,1.023685 0.440972,2.149738 0,1.73239 -0.976438,3.141925 l 2.700953,2.700953 q 0.291356,0.291356 0.291356,0.708705 z"
|
||||||
|
style="font-family:forkawesome;-inkscape-font-specification:forkawesome;shape-inside:url(#rect835-3-6-3-3);fill:#000000;fill-opacity:1"
|
||||||
|
id="path3465"
|
||||||
|
inkscape:export-filename="search.svg"
|
||||||
|
inkscape:export-xdpi="96.0026"
|
||||||
|
inkscape:export-ydpi="96.0026" />
|
||||||
|
<path
|
||||||
|
d="m 33.789486,85.786754 q 0.07875,0.07874 0.07875,0.181114 0,0.102368 -0.07875,0.181113 l -1.110304,1.110305 q -0.220486,0.220485 -0.535466,0.220485 H 21.560391 q -0.204737,0 -0.354352,-0.149615 -0.149616,-0.149615 -0.149616,-0.354352 v -2.015872 q 0,-0.204737 0.149616,-0.354352 0.149615,-0.149616 0.354352,-0.149616 h 4.535711 v -0.503968 q 0,-0.204737 0.149615,-0.354352 0.149616,-0.149615 0.354353,-0.149615 h 1.007935 q 0.204737,0 0.354353,0.149615 0.149615,0.149615 0.149615,0.354352 v 0.503968 h 4.031743 q 0.31498,0 0.535466,0.220486 z m -7.693384,7.236664 h 2.015871 v 4.031743 q 0,0.204737 -0.149615,0.354352 -0.149616,0.149616 -0.354353,0.149616 H 26.60007 q -0.204737,0 -0.354353,-0.149616 -0.149615,-0.149615 -0.149615,-0.354352 z m 6.551582,-3.527775 q 0.204737,0 0.354352,0.149615 0.149616,0.149616 0.149616,0.354353 v 2.015871 q 0,0.204737 -0.149616,0.354353 -0.149615,0.149615 -0.354352,0.149615 H 22.064359 q -0.31498,0 -0.535466,-0.220486 L 20.418589,91.18866 q -0.07875,-0.07874 -0.07875,-0.181113 0,-0.102369 0.07875,-0.181114 l 1.110304,-1.110304 q 0.220486,-0.220486 0.535466,-0.220486 h 4.031743 v -1.511904 h 2.015871 v 1.511904 z"
|
||||||
|
style="font-family:forkawesome;-inkscape-font-specification:forkawesome;shape-inside:url(#rect835-3-6-3-3);fill:#000000;fill-opacity:1"
|
||||||
|
id="path3467" />
|
||||||
|
<path
|
||||||
|
d="m 25.489765,107.60899 q -0.0079,0.0236 -0.102368,0 -0.08662,-0.0315 -0.24411,-0.0945 l -0.15749,-0.0709 q -0.346477,-0.15749 -0.685081,-0.38585 -0.05512,-0.0394 -0.322854,-0.24411 -0.267733,-0.21261 -0.299231,-0.22836 -0.527592,0.81107 -1.055183,1.42528 -0.637834,0.74808 -0.826822,0.8662 -0.0315,0.0157 -0.15749,0.0315 -0.118118,0.0157 -0.141741,0 0.04725,-0.0315 0.645709,-0.72446 0.165364,-0.18899 0.669332,-0.90557 0.511842,-0.71657 0.622085,-0.92919 0.133867,-0.23623 0.4016,-0.7717 0.267733,-0.54334 0.283482,-0.61421 -0.063,-0.008 -0.866195,0.25986 -0.063,0.0157 -0.220486,0.063 -0.149615,0.0394 -0.267733,0.0709 -0.118117,0.0315 -0.133866,0.0394 -0.01575,0.0157 -0.01575,0.0866 0,0.063 -0.0079,0.0709 -0.03937,0.0787 -0.244109,0.11812 -0.181114,0.0551 -0.370102,0 -0.141741,-0.0315 -0.220486,-0.16537 -0.0315,-0.0472 -0.03937,-0.18111 0.04725,-0.0157 0.188988,-0.0394 0.149615,-0.0236 0.236235,-0.0472 0.456721,-0.12599 0.826822,-0.25198 0.78745,-0.27561 0.803199,-0.27561 0.07875,-0.0157 0.338603,-0.14962 0.259859,-0.14174 0.346478,-0.17324 0.07087,-0.0236 0.165365,-0.063 0.102368,-0.0394 0.118117,-0.0394 0.01575,-0.008 0.04725,0 0.01575,0.0945 -0.0079,0.25985 0,0.0157 -0.102369,0.21262 -0.09449,0.19686 -0.204737,0.42522 -0.110243,0.22048 -0.133866,0.25986 -0.196863,0.39372 -0.606337,1.03156 l 0.503968,0.22048 q 0.09449,0.0473 0.582713,0.25199 0.496093,0.20473 0.535466,0.22048 0.0315,0.008 0.07874,0.20474 0.05512,0.18899 0.03937,0.23623 z m -1.614272,-3.827 q 0.02362,0.11812 -0.0315,0.22048 -0.09449,0.18112 -0.393725,0.29923 -0.236235,0.0945 -0.472469,0.0945 -0.204737,-0.0236 -0.385851,-0.20474 -0.110243,-0.11812 -0.141741,-0.32285 l 0.0079,-0.0236 q 0.02362,0.0236 0.149615,0.0394 0.133867,0.0157 0.212612,0 0.07875,-0.0157 0.45672,-0.126 0.283482,-0.0945 0.433098,-0.11024 0.133866,0 0.165364,0.13387 z m 5.4964,1.01581 0.496093,1.78751 -1.094555,-0.33073 z m -8.724944,6.2996 5.464902,-1.82689 v -8.12648 l -5.464902,1.83476 z m 9.772252,-2.49622 0.803199,0.24411 -1.425284,-5.17355 -0.78745,-0.2441 -1.700892,4.22073 0.803199,0.24411 0.354353,-0.8662 1.661519,0.51184 z m -3.960872,-7.57527 4.512087,1.44891 v -2.992308 z m 2.448968,10.41796 1.244171,0.10237 -0.425223,1.25992 -0.31498,-0.51971 q -1.023684,0.65358 -2.173361,0.85044 -0.456721,0.0945 -0.716579,0.0945 h -0.661458 q -0.622086,0 -1.5749,-0.30711 -0.94494,-0.30711 -1.441033,-0.66933 -0.063,-0.0551 -0.063,-0.12599 0,-0.063 0.03937,-0.11025 0.03937,-0.0394 0.102368,-0.0394 0.0315,0 0.141741,0.0551 0.110243,0.063 0.236235,0.13387 0.133866,0.0709 0.165364,0.0866 0.574839,0.29135 1.252046,0.48034 0.685081,0.19686 1.24417,0.19686 0.748078,0 1.315041,-0.11811 0.566964,-0.11025 1.236297,-0.39373 0.118117,-0.0551 0.236234,-0.12599 0.125992,-0.063 0.267733,-0.14962 0.149616,-0.0787 0.228361,-0.12599 z m 3.527775,-8.49658 v 8.49658 l -6.094861,-1.93712 q -0.110243,0.0472 -2.952937,1.00793 -2.842693,0.95282 -2.897815,0.95282 -0.102368,0 -0.141741,-0.10237 0,-0.008 -0.0079,-0.0236 v -8.48871 q 0.02362,-0.0709 0.0315,-0.0787 0.03937,-0.0472 0.15749,-0.0866 0.834696,-0.2756 1.1733,-0.39372 v -3.0239 l 4.39397,1.55915 q 0.01575,0 1.259919,-0.4331 1.252046,-0.433094 2.488342,-0.850442 1.24417,-0.425223 1.275668,-0.425223 0.15749,0 0.15749,0.165364 v 3.291541 z"
|
||||||
|
style="font-family:forkawesome;-inkscape-font-specification:forkawesome;shape-inside:url(#rect835-3-6-3-3);fill:#000000;fill-opacity:1"
|
||||||
|
id="path3469" />
|
||||||
|
<path
|
||||||
|
d="m 27.812742,121.82447 q 0,0.20474 -0.133866,0.35435 -0.125992,0.14962 -0.322855,0.14962 -0.204737,0 -0.354352,-0.126 -0.149616,-0.13386 -0.149616,-0.33072 0,-0.20474 0.133867,-0.35436 0.133866,-0.14961 0.330729,-0.14961 0.196862,0 0.346478,0.13386 0.149615,0.126 0.149615,0.32286 z m 0.118118,0.45672 2.756074,-4.57508 q -0.07087,0.063 -0.535466,0.49609 -0.456721,0.42522 -0.984312,0.91344 -0.527591,0.48822 -1.078806,1.00006 -0.543341,0.51184 -0.921317,0.87407 -0.370101,0.35435 -0.393724,0.4016 l -2.7482,4.56721 q 0.05512,-0.0551 0.527591,-0.48822 0.47247,-0.4331 0.992187,-0.91344 0.519717,-0.48822 1.070932,-1.00006 0.551214,-0.51972 0.921316,-0.87407 0.370101,-0.36223 0.393725,-0.4016 z m 5.0948,-0.4331 q 0,1.58278 -0.818948,2.92144 -0.02362,-0.0157 -0.133866,-0.0866 -0.110243,-0.0709 -0.212612,-0.12599 -0.09449,-0.063 -0.125992,-0.063 -0.102368,0 -0.102368,0.10237 0,0.0787 0.464595,0.34648 -0.582713,0.88194 -1.456782,1.50403 -0.866195,0.61421 -1.897754,0.86619 l -0.125992,-0.52759 q -0.0079,-0.0787 -0.118117,-0.0787 -0.03937,0 -0.063,0.0472 -0.02362,0.0394 -0.01575,0.0709 l 0.125992,0.53547 q -0.566964,0.11812 -1.149677,0.11812 -1.567025,0 -2.929313,-0.82682 0.0079,-0.0157 0.102368,-0.15749 0.09449,-0.14962 0.165365,-0.26774 0.07875,-0.11812 0.07875,-0.14961 0,-0.10237 -0.102369,-0.10237 -0.04725,0 -0.133866,0.11812 -0.08662,0.11024 -0.181114,0.26773 -0.08662,0.15749 -0.102368,0.18111 -0.889819,-0.59059 -1.511904,-1.47253 -0.622085,-0.88982 -0.866195,-1.92925 l 0.543341,-0.11812 q 0.07875,-0.0236 0.07875,-0.11812 0,-0.0394 -0.04725,-0.063 -0.03937,-0.0236 -0.07874,-0.0158 l -0.535466,0.11812 q -0.110243,-0.56697 -0.110243,-1.09456 0,-1.62214 0.85832,-2.98443 0.01575,0.008 0.141741,0.0945 0.133867,0.0866 0.236235,0.14962 0.110243,0.063 0.141741,0.063 0.102368,0 0.102368,-0.0945 0,-0.0472 -0.102368,-0.11812 -0.09449,-0.0787 -0.251984,-0.17324 l -0.15749,-0.0945 q 0.606336,-0.88195 1.48828,-1.48828 0.881944,-0.60634 1.921378,-0.84257 l 0.118117,0.52759 q 0.01575,0.0787 0.118118,0.0787 0.03937,0 0.063,-0.0394 0.02362,-0.0473 0.01575,-0.0866 l -0.118118,-0.51972 q 0.559089,-0.10236 1.055183,-0.10236 1.606397,0 2.984435,0.85832 -0.307106,0.44097 -0.307106,0.51184 0,0.10237 0.09449,0.10237 0.08662,0 0.377976,-0.50397 0.874069,0.59059 1.472531,1.46466 0.606336,0.87406 0.850446,1.89775 l -0.440972,0.0945 q -0.07874,0.0158 -0.07874,0.126 0,0.0394 0.03937,0.063 0.04725,0.0236 0.07874,0.0157 l 0.448847,-0.10237 q 0.110243,0.56697 0.110243,1.10243 z m 0.165364,2.44897 q 0.503968,-1.16543 0.503968,-2.44897 0,-1.28354 -0.503968,-2.44897 -0.496093,-1.16542 -1.338664,-2.00799 -0.842572,-0.84258 -2.007997,-1.33867 -1.165426,-0.50397 -2.448969,-0.50397 -1.283543,0 -2.448969,0.50397 -1.165426,0.49609 -2.007997,1.33867 -0.842571,0.84257 -1.346539,2.00799 -0.496093,1.16543 -0.496093,2.44897 0,1.28354 0.496093,2.44897 0.503968,1.16543 1.346539,2.008 0.842571,0.84257 2.007997,1.33866 1.165426,0.50397 2.448969,0.50397 1.283543,0 2.448969,-0.50397 1.165425,-0.49609 2.007997,-1.33866 0.842571,-0.84257 1.338664,-2.008 z m 0.700831,-5.18929 q 0.559089,1.30716 0.559089,2.74032 0,1.43316 -0.559089,2.74033 -0.55909,1.30716 -1.504029,2.2521 -0.94494,0.94494 -2.252107,1.50403 -1.307167,0.55909 -2.740325,0.55909 -1.433159,0 -2.740325,-0.55909 -1.307167,-0.55909 -2.252107,-1.50403 -0.94494,-0.94494 -1.504029,-2.2521 -0.559089,-1.30717 -0.559089,-2.74033 0,-1.43316 0.559089,-2.74032 0.559089,-1.30717 1.504029,-2.25211 0.94494,-0.94494 2.252107,-1.50403 1.307166,-0.55909 2.740325,-0.55909 1.433158,0 2.740325,0.55909 1.307167,0.55909 2.252107,1.50403 0.944939,0.94494 1.504029,2.25211 z"
|
||||||
|
style="font-family:forkawesome;-inkscape-font-specification:forkawesome;shape-inside:url(#rect835-3-6-3-3);fill:#000000;fill-opacity:1"
|
||||||
|
id="path3471" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 12 KiB |
46
main.php
46
main.php
|
@ -109,7 +109,6 @@ $showSidebar = $hasSidebar && ($ACT=='show');
|
||||||
<!-- ********** Tab ********** -->
|
<!-- ********** Tab ********** -->
|
||||||
<div class="tabblocks">
|
<div class="tabblocks">
|
||||||
<div class="nomobile">
|
<div class="nomobile">
|
||||||
|
|
||||||
<ul class="tab_ul">
|
<ul class="tab_ul">
|
||||||
<?php
|
<?php
|
||||||
foreach ( (new \dokuwiki\Menu\PageMenu())->getItems() as $item ) {
|
foreach ( (new \dokuwiki\Menu\PageMenu())->getItems() as $item ) {
|
||||||
|
@ -121,7 +120,6 @@ $showSidebar = $hasSidebar && ($ACT=='show');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
?>
|
?>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
|
@ -164,22 +162,10 @@ $showSidebar = $hasSidebar && ($ACT=='show');
|
||||||
<hr class="a11y" />
|
<hr class="a11y" />
|
||||||
|
|
||||||
<!-- ********** Right menu (tools) ********** -->
|
<!-- ********** Right menu (tools) ********** -->
|
||||||
<div>
|
<div class="navtoolwrap">
|
||||||
<nav class="nomobile navtool">
|
<nav class="nomobile navtool">
|
||||||
<div class="biseau_right_top nomobile"></div>
|
<div class="biseau_right_top nomobile"></div>
|
||||||
<div class="nomobile bartool"
|
<div class="nomobile bartool"
|
||||||
|
|
||||||
|
|
||||||
<!-- searchtool-->
|
|
||||||
<div class="searchtool nomobile">
|
|
||||||
<?php tpl_searchform(); ?>
|
|
||||||
</div>
|
|
||||||
<!-- You are here -->
|
|
||||||
<?php if($conf['youarehere']): ?>
|
|
||||||
<div class="youarehere nomobile"><?php tpl_youarehere() ?></div>
|
|
||||||
<hr class="nomobile">
|
|
||||||
<?php endif ?>
|
|
||||||
|
|
||||||
<!-- Page Actions -->
|
<!-- Page Actions -->
|
||||||
<div class="dokuwiki__tools nomobile">
|
<div class="dokuwiki__tools nomobile">
|
||||||
<!-- Don't include childrenpage here -->
|
<!-- Don't include childrenpage here -->
|
||||||
|
@ -206,6 +192,9 @@ $showSidebar = $hasSidebar && ($ACT=='show');
|
||||||
echo '<li class="user">';
|
echo '<li class="user">';
|
||||||
$loginname = $_SERVER["REMOTE_USER"];
|
$loginname = $_SERVER["REMOTE_USER"];
|
||||||
$kh_userpage = tpl_getLang('kh_userpage');
|
$kh_userpage = tpl_getLang('kh_userpage');
|
||||||
|
echo "<img src=\"";
|
||||||
|
echo tpl_basedir();
|
||||||
|
echo "/images/perso.svg\" alt=\"icone\" ></img>";
|
||||||
echo "<span>$kh_userpage </span>";
|
echo "<span>$kh_userpage </span>";
|
||||||
echo (tpl_getConf("khum1_userpage")
|
echo (tpl_getConf("khum1_userpage")
|
||||||
? html_wikilink(tpl_getConf("khum1_userpage_ns").$loginname, hsc($loginname))
|
? html_wikilink(tpl_getConf("khum1_userpage_ns").$loginname, hsc($loginname))
|
||||||
|
@ -222,16 +211,33 @@ $showSidebar = $hasSidebar && ($ACT=='show');
|
||||||
<hr class="nomobile">
|
<hr class="nomobile">
|
||||||
|
|
||||||
<!-- translation (only with Translation Plugin) -->
|
<!-- translation (only with Translation Plugin) -->
|
||||||
<div>
|
<?php
|
||||||
<?php
|
|
||||||
$translation = plugin_load('helper','translation');
|
$translation = plugin_load('helper','translation');
|
||||||
if ($translation) echo $translation->showTranslations();
|
if ($translation) {?>
|
||||||
|
<div class="kh_translate">
|
||||||
|
<img src="<?php echo tpl_basedir(); ?>/images/lang.svg" alt"icone"></img>
|
||||||
|
<?php
|
||||||
|
echo $translation->showTranslations();
|
||||||
|
echo "</div>" ;
|
||||||
|
}
|
||||||
?>
|
?>
|
||||||
</div>
|
|
||||||
|
|
||||||
|
<!-- searchtool-->
|
||||||
|
<div class="searchtool nomobile">
|
||||||
|
<?php tpl_searchform(); ?>
|
||||||
|
</div>
|
||||||
|
<!-- You are here -->
|
||||||
|
<?php if($conf['youarehere']): ?>
|
||||||
|
<div class="youarehere nomobile">
|
||||||
|
<img src="<?php echo tpl_basedir(); ?>/images/youarehere.svg" alt="icone"></img>
|
||||||
|
<span><?php tpl_youarehere() ?></div></span>
|
||||||
|
<hr class="nomobile">
|
||||||
|
<?php endif ?>
|
||||||
<!-- Breadcrumbs -->
|
<!-- Breadcrumbs -->
|
||||||
<?php if($conf['breadcrumbs']): ?>
|
<?php if($conf['breadcrumbs']): ?>
|
||||||
<div class="trace nomobile"><div><?php tpl_breadcrumbs() ?></div></div>
|
<div class="trace nomobile"><img src="<?php echo tpl_basedir(); ?>/images/compass.svg" alt="icone"></img>
|
||||||
|
<span><?php tpl_breadcrumbs() ?></span>
|
||||||
|
</div>
|
||||||
<?php endif ?>
|
<?php endif ?>
|
||||||
</div>
|
</div>
|
||||||
<div class="biseau_2_bottom nomobile"></div>
|
<div class="biseau_2_bottom nomobile"></div>
|
||||||
|
|
Loading…
Reference in a new issue