This is an automated email from the git hooks/post-receive script. New commit to branch bow-v2-go in repository bow. See https://gitlab.nuiton.org/chorem/bow.git commit 1c4632ad97e68e993f77d5483a75ffa1f339d133 Author: kaufmann <kaufmann@codelutin.com> Date: Mon Aug 10 16:38:24 2020 +0200 Ajout des icones et du générateur d'icones aux sources --- docs/assets/icons/Readme.md | 8 +++ docs/assets/icons/fontcustom.sh | 18 +++++++ docs/assets/icons/fontcustom.yml | 96 +++++++++++++++++++++++++++++++++++ docs/assets/icons/svg/flag.svg | 60 ++++++++++++++++++++++ docs/assets/icons/svg/graph.svg | 60 ++++++++++++++++++++++ docs/assets/icons/svg/grid.svg | 62 ++++++++++++++++++++++ docs/assets/icons/svg/heart.svg | 69 +++++++++++++++++++++++++ docs/assets/icons/svg/help.svg | 61 ++++++++++++++++++++++ docs/assets/icons/svg/list.svg | 74 +++++++++++++++++++++++++++ docs/assets/icons/svg/lock.svg | 62 ++++++++++++++++++++++ docs/assets/icons/svg/logout.svg | 62 ++++++++++++++++++++++ docs/assets/icons/svg/lutin.svg | 60 ++++++++++++++++++++++ docs/assets/icons/svg/pencil.svg | 62 ++++++++++++++++++++++ docs/assets/icons/svg/photo.svg | 62 ++++++++++++++++++++++ docs/assets/icons/svg/search.svg | 62 ++++++++++++++++++++++ docs/assets/icons/svg/settings.svg | 62 ++++++++++++++++++++++ docs/assets/icons/svg/share.svg | 60 ++++++++++++++++++++++ docs/assets/icons/svg/square-plus.svg | 62 ++++++++++++++++++++++ docs/assets/icons/svg/trashcan.svg | 62 ++++++++++++++++++++++ docs/assets/icons/svg/user-group.svg | 62 ++++++++++++++++++++++ docs/assets/icons/svg/user.svg | 62 ++++++++++++++++++++++ docs/assets/icons/svg/world.svg | 61 ++++++++++++++++++++++ 22 files changed, 1309 insertions(+) diff --git a/docs/assets/icons/Readme.md b/docs/assets/icons/Readme.md new file mode 100644 index 0000000..5514878 --- /dev/null +++ b/docs/assets/icons/Readme.md @@ -0,0 +1,8 @@ +# Mise à jour de la police d'icônes + +* Ajout d'icônes au format svg dans le dossier ```docs/assets/icons/svg``` +* Exécuter le script ```fontcustom.sh``` + +# Source des icônes + +* https://tablericons.com/ diff --git a/docs/assets/icons/fontcustom.sh b/docs/assets/icons/fontcustom.sh new file mode 100755 index 0000000..0a20ec7 --- /dev/null +++ b/docs/assets/icons/fontcustom.sh @@ -0,0 +1,18 @@ +#!/bin/bash + +sudo rm -rf output + +docker run --rm --name fc -v $(pwd):/work -ti -d thomaswelton/fontcustom +docker exec -it fc fontcustom compile /work/svg -c /work/fontcustom.yml -o /work/output +docker stop fc + +# Installe la font générée +cp output/bow-icons.ttf ../../../web/src/assets/font/ +cp output/bow-icons.svg ../../../web/src/assets/font/ +cp output/bow-icons.woff ../../../web/src/assets/font/ +cp output/bow-icons.eot ../../../web/src/assets/font/ + +# Installe le CSS généré après l'avoir rectifié +cat output/bow-icons.css | sed 's|url("./bow-icons|url("../font/bow-icons|g' > ../../../web/src/assets/less/_icons.less + +sudo rm -rf output \ No newline at end of file diff --git a/docs/assets/icons/fontcustom.yml b/docs/assets/icons/fontcustom.yml new file mode 100644 index 0000000..1a30692 --- /dev/null +++ b/docs/assets/icons/fontcustom.yml @@ -0,0 +1,96 @@ +# ============================================================================= +# Font Custom Configuration +# This file should live in the directory where you run `fontcustom compile`. +# For more info, visit <https://github.com/FontCustom/fontcustom>. +# ============================================================================= + + +# ----------------------------------------------------------------------------- +# Project Info +# ----------------------------------------------------------------------------- + +# The font's name. Also determines the file names of generated templates. +font_name: bow-icons + +# Format of CSS selectors. {{glyph}} is substituted for the glyph name. +#css_selector: .i-{{glyph}} + +# Generate fonts without asset-busting hashes. +no_hash: true + +# Encode WOFF fonts into the generated CSS. +#base64: true + +# Forces compilation, even if inputs have not changed +force: true + +# Display (possibly useful) debugging messages. +#debug: true + +# Hide status messages. +#quiet: true + + +# ----------------------------------------------------------------------------- +# Input / Output Locations +# You can save generated fonts, CSS, and other files to different locations +# here. Font Custom can also read input vectors and templates from different +# places. +# +# NOTE: +# - Be sure to preserve the whitespace in these YAML hashes. +# - INPUT[:vectors] and OUTPUT[:fonts] are required. Everything else is +# optional. +# - Specify output locations for custom templates by including their file +# names as the key. +# ----------------------------------------------------------------------------- + +#input: +# vectors: my/vectors +# templates: my/templates + +#output: +# fonts: app/assets/fonts +# css: app/assets/stylesheets +# preview: app/views/styleguide +# my-custom-template.yml: path/to/template/output + + +# ----------------------------------------------------------------------------- +# Templates +# A YAML array of templates and files to generate alongside fonts. Custom +# templates should be saved in the INPUT[:templates] directory and referenced +# by their base file name. +# +# For Rails and Compass templates, set `preprocessor_path` as the relative +# path from OUTPUT[:css] to OUTPUT[:fonts]. By default, these are the same +# directory. +# +# Included in Font Custom: preview, css, scss, scss-rails +# Default: css, preview +# ----------------------------------------------------------------------------- + +#templates: +#- scss-rails +#- preview +#- my-custom-template.yml + +#preprocessor_path: ../fonts/ + + +# ----------------------------------------------------------------------------- +# Font Settings (defaults shown) +# ----------------------------------------------------------------------------- + +# Size (in pica points) for which your font is designed. +#font_design_size: 16 + +# The em size. Setting this will scale the entire font to the given size. +#font_em: 512 + +# The font's ascent and descent. Used to calculate the baseline. +#font_ascent: 448 +#font_descent: 64 + +# Horizontally fit glyphs to their individual vector widths. +#autowidth: false diff --git a/docs/assets/icons/svg/flag.svg b/docs/assets/icons/svg/flag.svg new file mode 100644 index 0000000..bb0fb29 --- /dev/null +++ b/docs/assets/icons/svg/flag.svg @@ -0,0 +1,60 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + viewBox="0 0 6.3499999 6.3500002" + version="1.1" + id="svg866" + inkscape:version="1.0 (4035a4fb49, 2020-05-01)" + sodipodi:docname="flag.svg"> + <defs + id="defs860" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="7.9195959" + inkscape:cx="10.434081" + inkscape:cy="15.88121" + inkscape:document-units="mm" + inkscape:current-layer="layer1" + inkscape:document-rotation="0" + showgrid="false" + units="px" + inkscape:window-width="1920" + inkscape:window-height="1031" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" /> + <metadata + id="metadata863"> + <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></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Calque 1" + inkscape:groupmode="layer" + id="layer1"> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration- [...] + d="m 2.2489017,0.6053894 c -0.3689524,0 -0.7297706,0.1426899 -1.0257771,0.396875 a 0.26458333,0.26458333 0 0 0 -0.083716,0.05426 c -4.498e-4,4.524e-4 -0.00109,5.821e-4 -0.00156,0.00103 a 0.26458333,0.26458333 0 0 0 -0.011885,0.012919 0.26458333,0.26458333 0 0 0 -0.00878,0.010335 0.26458333,0.26458333 0 0 0 -0.00827,0.010852 0.26458333,0.26458333 0 0 0 -0.011369,0.016537 0.26458333,0.26458333 0 0 0 -0.00517,0.00878 0.26458333,0.26458333 0 0 0 -0.00568,0.010852 0.26458333,0.26458333 [...] + id="path869" /> + </g> +</svg> diff --git a/docs/assets/icons/svg/graph.svg b/docs/assets/icons/svg/graph.svg new file mode 100644 index 0000000..99d6370 --- /dev/null +++ b/docs/assets/icons/svg/graph.svg @@ -0,0 +1,60 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + viewBox="0 0 6.3499999 6.3500002" + version="1.1" + id="svg866" + inkscape:version="1.0 (4035a4fb49, 2020-05-01)" + sodipodi:docname="graph.svg"> + <defs + id="defs860" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="7.9195959" + inkscape:cx="10.434081" + inkscape:cy="15.88121" + inkscape:document-units="mm" + inkscape:current-layer="layer1" + inkscape:document-rotation="0" + showgrid="false" + units="px" + inkscape:window-width="1920" + inkscape:window-height="1031" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" /> + <metadata + id="metadata863"> + <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></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Calque 1" + inkscape:groupmode="layer" + id="layer1"> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration- [...] + d="m 2.6637757,0.56260492 a 0.26458333,0.26458333 0 0 0 -0.029972,0.00207 0.26458333,0.26458333 0 0 0 -5.159e-4,0 0.26458333,0.26458333 0 0 0 -0.00465,5.159e-4 0.26458333,0.26458333 0 0 0 -0.017053,0.0031 0.26458333,0.26458333 0 0 0 -0.00155,5.159e-4 0.26458333,0.26458333 0 0 0 -0.00568,0.00103 c -3.889e-4,9.05e-5 -6.429e-4,4.26e-4 -0.00103,5.159e-4 a 0.26458333,0.26458333 0 0 0 -0.065123,0.024805 C 0.58286433,1.1037046 -0.11038997,3.5767149 1.3310404,5.0181455 2.7899129,6.477018 [...] + id="path842" /> + </g> +</svg> diff --git a/docs/assets/icons/svg/grid.svg b/docs/assets/icons/svg/grid.svg new file mode 100644 index 0000000..d48741e --- /dev/null +++ b/docs/assets/icons/svg/grid.svg @@ -0,0 +1,62 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + class="icon icon-tabler icon-tabler-share" + width="24" + height="24" + viewBox="0 0 24 24" + stroke-width="2" + stroke="currentColor" + fill="none" + stroke-linecap="round" + stroke-linejoin="round" + version="1.1" + id="svg14" + sodipodi:docname="grid.svg" + inkscape:version="1.0 (4035a4fb49, 2020-05-01)"> + <metadata + id="metadata20"> + <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> + <defs + id="defs18" /> + <sodipodi:namedview + inkscape:document-rotation="0" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1920" + inkscape:window-height="1031" + id="namedview16" + showgrid="false" + inkscape:zoom="27.208333" + inkscape:cx="12.147014" + inkscape:cy="12" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:current-layer="svg14" /> + <path + id="path11069" + d="M 5 3 C 3.9072751 3 3 3.9072751 3 5 C 3 6.0927249 3.9072751 7 5 7 C 5.8173422 7.0000002 6.395367 6.4240731 6.703125 5.7109375 A 1 1 0 0 0 7 5 A 1 1 0 0 0 6.703125 4.2890625 C 6.395367 3.5759269 5.8173422 2.9999998 5 3 z M 12 3 C 10.907275 3 10 3.9072751 10 5 C 10 6.0927249 10.907275 7 12 7 C 12.817342 7 13.395367 6.4240731 13.703125 5.7109375 A 1 1 0 0 0 14 5 A 1 1 0 0 0 13.703125 4.2890625 C 13.395367 3.5759269 12.817342 3 12 3 z M 19 3 C 17.907275 3 17 3.9072751 17 5 C 17 6.092 [...] + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-st [...] +</svg> diff --git a/docs/assets/icons/svg/heart.svg b/docs/assets/icons/svg/heart.svg new file mode 100644 index 0000000..5cb0e66 --- /dev/null +++ b/docs/assets/icons/svg/heart.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + class="icon icon-tabler icon-tabler-share" + width="24" + height="24" + viewBox="0 0 24 24" + stroke-width="2" + stroke="currentColor" + fill="none" + stroke-linecap="round" + stroke-linejoin="round" + version="1.1" + id="svg14" + sodipodi:docname="heart.svg" + inkscape:version="1.0 (4035a4fb49, 2020-05-01)"> + <metadata + id="metadata20"> + <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> + <defs + id="defs18" /> + <sodipodi:namedview + inkscape:document-rotation="0" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1920" + inkscape:window-height="1031" + id="namedview16" + showgrid="false" + inkscape:zoom="27.208333" + inkscape:cx="12.147014" + inkscape:cy="12" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:current-layer="svg14" /> + <g + style="fill:#000000;fill-opacity:1" + id="g4" + transform="matrix(0.3030303,0,0,0.3030303,2.3030304,2.2793964)"> + <path + sodipodi:nodetypes="scsscccccss" + inkscape:connector-curvature="0" + style="fill:#000000;fill-opacity:1;stroke-width:2.2" + id="path2" + d="m 49.6,1.1922003 c -8.092701,0 -15.002901,4.5606001 -17.600001,10.9218997 -2.5971,-6.3612996 -9.5073,-10.9218997 -17.6,-10.9218997 -11.0164994,0 -17.5999995,9.5083997 -17.5999995,18.6999997 0,9.4479 5.8586001,19.5305 17.4129995,29.9662 8.5118,7.687901 17.149,12.734701 17.2348,12.785301 l 0.5522,0.3201 0.5522,-0.3201 c 0.0869,-0.0506 8.723,-5.0974 17.234801,-12.785301 C 61.3414,39.4227 67.2,29.3401 67.2,19.8922 67.2,10.7006 60.6165,1.1922003 49.6,1.1922003 Z" /> + </g> +</svg> diff --git a/docs/assets/icons/svg/help.svg b/docs/assets/icons/svg/help.svg new file mode 100644 index 0000000..6bae7ac --- /dev/null +++ b/docs/assets/icons/svg/help.svg @@ -0,0 +1,61 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + inkscape:version="1.0 (4035a4fb49, 2020-05-01)" + sodipodi:docname="help.svg" + id="svg14" + version="1.1" + stroke-linejoin="round" + stroke-linecap="round" + fill="none" + stroke="currentColor" + stroke-width="2" + viewBox="0 0 24 24" + height="24" + width="24" + class="icon icon-tabler icon-tabler-share"> + <metadata + id="metadata20"> + <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></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <defs + id="defs18" /> + <sodipodi:namedview + inkscape:current-layer="svg14" + inkscape:window-maximized="1" + inkscape:window-y="25" + inkscape:window-x="0" + inkscape:cy="12" + inkscape:cx="12.147014" + inkscape:zoom="27.208333" + showgrid="false" + id="namedview16" + inkscape:window-height="1031" + inkscape:window-width="1920" + inkscape:pageshadow="2" + inkscape:pageopacity="0" + guidetolerance="10" + gridtolerance="10" + objecttolerance="10" + borderopacity="1" + bordercolor="#666666" + pagecolor="#ffffff" /> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-st [...] + d="m 11.999997,2.0000001 c -5.5110028,0 -9.9999999,4.4889971 -9.9999999,9.9999999 0,5.511003 4.4889971,10 9.9999999,10 5.373268,0 9.70521,-4.28998 9.921875,-9.611328 A 1,1 0 0 0 22.000002,12 1,1 0 0 0 21.921872,11.619141 C 21.709247,6.2941148 17.375925,2.0000001 11.999997,2.0000001 Z m 0,2 c 4.430123,0 8,3.5698774 8,7.9999999 0,4.430123 -3.569877,8 -8,8 -4.4301225,0 -7.9999999,-3.569877 -7.9999999,-8 0,-4.4301225 3.5698774,-7.9999999 7.9999999,-7.9999999 z m 0.08203,1.9863282 c -1.0 [...] + id="path846" /> +</svg> diff --git a/docs/assets/icons/svg/list.svg b/docs/assets/icons/svg/list.svg new file mode 100644 index 0000000..7b587ed --- /dev/null +++ b/docs/assets/icons/svg/list.svg @@ -0,0 +1,74 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + class="icon icon-tabler icon-tabler-grid-dots" + width="24" + height="24" + viewBox="0 0 24 24" + stroke-width="2" + stroke="currentColor" + fill="none" + stroke-linecap="round" + stroke-linejoin="round" + version="1.1" + id="svg22" + sodipodi:docname="list.svg" + inkscape:version="1.0 (4035a4fb49, 2020-05-01)"> + <metadata + id="metadata28"> + <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> + <defs + id="defs26" /> + <sodipodi:namedview + inkscape:document-rotation="0" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1920" + inkscape:window-height="1031" + id="namedview24" + showgrid="false" + inkscape:zoom="27.208333" + inkscape:cx="12.147014" + inkscape:cy="12" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:current-layer="svg22" /> + <g + id="g877" + transform="translate(-20)"> + <path + d="m 24.946175,3 h 14.107652 c 1.108,0 2,0.892 2,2 0,1.108 -0.892,2 -2,2 H 24.946175 c -1.108,0 -2,-0.892 -2,-2 0,-1.108 0.892,-2 2,-2 z" + style="opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2.10408;stroke-linecap:round;stroke-linejoin:round" + id="rect854" /> + <path + d="m 24.946175,10 h 14.107652 c 1.108,0 2,0.892 2,2 0,1.108 -0.892,2 -2,2 H 24.946175 c -1.108,0 -2,-0.892 -2,-2 0,-1.108 0.892,-2 2,-2 z" + style="opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2.10408;stroke-linecap:round;stroke-linejoin:round" + id="rect870" /> + <path + d="m 24.946175,17 h 14.107652 c 1.108,0 2,0.892 2,2 0,1.108 -0.892,2 -2,2 H 24.946175 c -1.108,0 -2,-0.892 -2,-2 0,-1.108 0.892,-2 2,-2 z" + style="opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2.10408;stroke-linecap:round;stroke-linejoin:round" + id="rect872" /> + </g> +</svg> diff --git a/docs/assets/icons/svg/lock.svg b/docs/assets/icons/svg/lock.svg new file mode 100644 index 0000000..12eaa31 --- /dev/null +++ b/docs/assets/icons/svg/lock.svg @@ -0,0 +1,62 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + class="icon icon-tabler icon-tabler-share" + width="24" + height="24" + viewBox="0 0 24 24" + stroke-width="2" + stroke="currentColor" + fill="none" + stroke-linecap="round" + stroke-linejoin="round" + version="1.1" + id="svg14" + sodipodi:docname="lock.svg" + inkscape:version="1.0 (4035a4fb49, 2020-05-01)"> + <metadata + id="metadata20"> + <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> + <defs + id="defs18" /> + <sodipodi:namedview + inkscape:document-rotation="0" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1920" + inkscape:window-height="1031" + id="namedview16" + showgrid="false" + inkscape:zoom="27.208333" + inkscape:cx="12.147014" + inkscape:cy="12" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:current-layer="svg14" /> + <path + id="path11056" + d="M 12 2 C 10.777828 2 9.5422557 2.4022519 8.5859375 3.2519531 C 7.6296193 4.1016544 7.000354 5.4169094 7 7 L 7 10 C 5.3552972 10 4 11.355297 4 13 L 4 19 C 4 20.644703 5.3552972 22 7 22 L 17 22 C 18.644703 22 20 20.644703 20 19 L 20 13 C 20 11.355297 18.644703 10 17 10 L 17 7 C 17.000354 5.4169094 16.370138 4.1017765 15.414062 3.2519531 C 14.457987 2.4021298 13.222172 2 12 2 z M 12 4 C 12.777828 4 13.542311 4.2648357 14.085938 4.7480469 C 14.629564 5.2312581 15.000242 5.9170215 15 [...] + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-st [...] +</svg> diff --git a/docs/assets/icons/svg/logout.svg b/docs/assets/icons/svg/logout.svg new file mode 100644 index 0000000..06da82d --- /dev/null +++ b/docs/assets/icons/svg/logout.svg @@ -0,0 +1,62 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + class="icon icon-tabler icon-tabler-share" + width="24" + height="24" + viewBox="0 0 24 24" + stroke-width="2" + stroke="currentColor" + fill="none" + stroke-linecap="round" + stroke-linejoin="round" + version="1.1" + id="svg14" + sodipodi:docname="logout.svg" + inkscape:version="1.0 (4035a4fb49, 2020-05-01)"> + <metadata + id="metadata20"> + <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> + <defs + id="defs18" /> + <sodipodi:namedview + inkscape:document-rotation="0" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1920" + inkscape:window-height="1031" + id="namedview16" + showgrid="false" + inkscape:zoom="27.208333" + inkscape:cx="12.147014" + inkscape:cy="12" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:current-layer="svg14" /> + <path + id="path11052" + d="M 5 3 C 3.3549904 3 2 4.3549904 2 6 L 2 18 C 2 19.64501 3.3549904 21 5 21 L 12 21 C 13.64501 21 15 19.64501 15 18 L 15 16 A 1 1 0 0 0 14 15 A 1 1 0 0 0 13 16 L 13 18 C 13 18.564129 12.564129 19 12 19 L 5 19 C 4.4358706 19 4 18.564129 4 18 L 4 6 C 4 5.4358706 4.4358706 5 5 5 L 12 5 C 12.564129 5 13 5.4358706 13 6 L 13 8 A 1 1 0 0 0 14 9 A 1 1 0 0 0 15 8 L 15 6 C 15 4.3549904 13.64501 3 12 3 L 5 3 z M 18.029297 8 A 1 1 0 0 0 17.292969 8.2929688 A 1 1 0 0 0 17.292969 9.7070312 L 18. [...] + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-st [...] +</svg> diff --git a/docs/assets/icons/svg/lutin.svg b/docs/assets/icons/svg/lutin.svg new file mode 100644 index 0000000..b165c1c --- /dev/null +++ b/docs/assets/icons/svg/lutin.svg @@ -0,0 +1,60 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + id="logo" + viewBox="0 0 12.343 31.99085" + version="1.1" + sodipodi:docname="lutin.svg" + width="12.343" + height="31.99085" + inkscape:version="0.92.2 5c3e80d, 2017-08-06"> + <metadata + id="metadata13"> + <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> + <defs + id="defs11" /> + <sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1920" + inkscape:window-height="1019" + id="namedview9" + showgrid="false" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:zoom="4.3958333" + inkscape:cx="2.6161134" + inkscape:cy="15.999213" + inkscape:window-x="0" + inkscape:window-y="34" + inkscape:window-maximized="1" + inkscape:current-layer="logo" /> + <path + style="fill:#000000;fill-opacity:1" + d="m 8.766,27.986638 c -0.368,0.225 -0.736,0.388 -1.144,0.531 -0.286,0.082 -0.49,0.368 -0.47,0.674 0.02,0.511 0.225,1.063 0.593,1.573 0.777,1.083 2.003,1.533 2.718,1.001 0.736,-0.531 0.695,-1.819 -0.082,-2.902 -0.266,-0.388 -0.593,-0.674 -0.94,-0.899 -0.184,-0.123 -0.47,-0.123 -0.674,0.02 z m -5.047,0.082 c -0.225,-0.123 -0.531,-0.123 -0.736,0.041 -0.266,0.204 -0.531,0.45 -0.756,0.756 -0.776,1.083 -0.797,2.391 -0.082,2.902 0.736,0.531 1.962,0.082 2.718,-1.001 0.327,-0.47 0.531,-0.98 [...] + id="path4" + inkscape:connector-curvature="0" /> +</svg> diff --git a/docs/assets/icons/svg/pencil.svg b/docs/assets/icons/svg/pencil.svg new file mode 100644 index 0000000..e2da1f6 --- /dev/null +++ b/docs/assets/icons/svg/pencil.svg @@ -0,0 +1,62 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + class="icon icon-tabler icon-tabler-share" + width="24" + height="24" + viewBox="0 0 24 24" + stroke-width="2" + stroke="currentColor" + fill="none" + stroke-linecap="round" + stroke-linejoin="round" + version="1.1" + id="svg14" + sodipodi:docname="pencil.svg" + inkscape:version="1.0 (4035a4fb49, 2020-05-01)"> + <metadata + id="metadata20"> + <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> + <defs + id="defs18" /> + <sodipodi:namedview + inkscape:document-rotation="0" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1920" + inkscape:window-height="1031" + id="namedview16" + showgrid="false" + inkscape:zoom="27.208333" + inkscape:cx="12.147014" + inkscape:cy="12" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:current-layer="svg14" /> + <path + id="path11048" + d="M 18.572266 2.4257812 C 17.76563 2.3783319 16.889667 2.6962703 16.212891 3.3730469 L 7.7128906 11.873047 A 1.0001 1.0001 0 0 0 7.4199219 12.580078 L 7.4199219 15.580078 A 1 1 0 0 0 7.4238281 15.664062 A 1 1 0 0 0 7.4335938 15.746094 A 1 1 0 0 0 7.4765625 15.910156 A 1 1 0 0 0 7.5078125 15.988281 A 1 1 0 0 0 7.5449219 16.0625 A 1 1 0 0 0 7.5878906 16.134766 A 1 1 0 0 0 7.6933594 16.265625 A 1 1 0 0 0 7.8886719 16.425781 A 1 1 0 0 0 8.0371094 16.503906 A 1 1 0 0 0 8.1152344 16.5312 [...] + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-st [...] +</svg> diff --git a/docs/assets/icons/svg/photo.svg b/docs/assets/icons/svg/photo.svg new file mode 100644 index 0000000..0198b8b --- /dev/null +++ b/docs/assets/icons/svg/photo.svg @@ -0,0 +1,62 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + class="icon icon-tabler icon-tabler-share" + width="24" + height="24" + viewBox="0 0 24 24" + stroke-width="2" + stroke="currentColor" + fill="none" + stroke-linecap="round" + stroke-linejoin="round" + version="1.1" + id="svg14" + sodipodi:docname="photo.svg" + inkscape:version="1.0 (4035a4fb49, 2020-05-01)"> + <metadata + id="metadata20"> + <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> + <defs + id="defs18" /> + <sodipodi:namedview + inkscape:document-rotation="0" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1920" + inkscape:window-height="1031" + id="namedview16" + showgrid="false" + inkscape:zoom="27.208333" + inkscape:cx="12.147014" + inkscape:cy="12" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:current-layer="svg14" /> + <path + id="path11044" + d="M 9 3 C 7.9072751 3 7 3.9072751 7 5 C 7 5.5641294 6.5641294 6 6 6 L 5 6 A 1 1 0 0 0 4.2910156 6.2949219 C 3.0270177 6.6477473 2 7.6303258 2 9 L 2 18 C 2 19.64501 3.3549904 21 5 21 L 19 21 C 20.64501 21 22 19.64501 22 18 L 22 9 C 22 7.3549904 20.64501 6 19 6 L 18 6 C 17.435871 6 17 5.5641294 17 5 C 17 3.9072751 16.092725 3 15 3 L 9 3 z M 9 5 L 15 5 C 15 6.6450096 16.35499 8 18 8 L 19 8 C 19.564129 8 20 8.4358706 20 9 L 20 18 C 20 18.564129 19.564129 19 19 19 L 5 19 C 4.4358706 19 [...] + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-st [...] +</svg> diff --git a/docs/assets/icons/svg/search.svg b/docs/assets/icons/svg/search.svg new file mode 100644 index 0000000..cdefe12 --- /dev/null +++ b/docs/assets/icons/svg/search.svg @@ -0,0 +1,62 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + class="icon icon-tabler icon-tabler-share" + width="24" + height="24" + viewBox="0 0 24 24" + stroke-width="2" + stroke="currentColor" + fill="none" + stroke-linecap="round" + stroke-linejoin="round" + version="1.1" + id="svg14" + sodipodi:docname="search.svg" + inkscape:version="1.0 (4035a4fb49, 2020-05-01)"> + <metadata + id="metadata20"> + <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> + <defs + id="defs18" /> + <sodipodi:namedview + inkscape:document-rotation="0" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1920" + inkscape:window-height="1031" + id="namedview16" + showgrid="false" + inkscape:zoom="27.208333" + inkscape:cx="12.147014" + inkscape:cy="12" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:current-layer="svg14" /> + <path + id="path11040" + d="M 10 2 C 5.5935666 2 2 5.5935666 2 10 C 2 14.406433 5.5935666 18 10 18 C 11.837569 18 13.45541 17.270875 14.808594 16.222656 L 20.292969 21.707031 A 1 1 0 0 0 21.707031 21.707031 A 1 1 0 0 0 21.707031 20.292969 L 16.222656 14.808594 C 17.192354 13.556776 17.836308 12.067951 17.921875 10.388672 A 1 1 0 0 0 18 10 A 1 1 0 0 0 17.921875 9.6171875 C 17.709978 5.3974742 14.270777 2 10 2 z M 10 4 C 13.325553 4 16 6.6744469 16 10 C 16 13.325553 13.325553 16 10 16 C 6.6744469 16 4 13.3255 [...] + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-st [...] +</svg> diff --git a/docs/assets/icons/svg/settings.svg b/docs/assets/icons/svg/settings.svg new file mode 100644 index 0000000..641f690 --- /dev/null +++ b/docs/assets/icons/svg/settings.svg @@ -0,0 +1,62 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + class="icon icon-tabler icon-tabler-share" + width="24" + height="24" + viewBox="0 0 24 24" + stroke-width="2" + stroke="currentColor" + fill="none" + stroke-linecap="round" + stroke-linejoin="round" + version="1.1" + id="svg14" + sodipodi:docname="settings.svg" + inkscape:version="1.0 (4035a4fb49, 2020-05-01)"> + <metadata + id="metadata20"> + <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> + <defs + id="defs18" /> + <sodipodi:namedview + inkscape:document-rotation="0" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1920" + inkscape:window-height="1031" + id="namedview16" + showgrid="false" + inkscape:zoom="27.208333" + inkscape:cx="12.147014" + inkscape:cy="12" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:current-layer="svg14" /> + <path + id="path832" + d="M 6 3 A 1 1 0 0 0 5 4 L 5 7.4160156 C 3.8932988 7.8594102 3 8.7433475 3 10 C 3 11.256653 3.8932988 12.14059 5 12.583984 L 5 20 A 1 1 0 0 0 6 21 A 1 1 0 0 0 7 20 L 7 12.583984 C 7.8642204 12.237738 8.4522928 11.614589 8.7050781 10.708984 A 1 1 0 0 0 9 10 A 1 1 0 0 0 8.7050781 9.2910156 C 8.4522928 8.3854114 7.8642204 7.7622615 7 7.4160156 L 7 4 A 1 1 0 0 0 6 3 z M 12 3 A 1 1 0 0 0 11 4 L 11 13.416016 C 9.8932988 13.85941 9 14.743347 9 16 C 9 17.256653 9.8932988 18.14059 11 18.5839 [...] + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-st [...] +</svg> diff --git a/docs/assets/icons/svg/share.svg b/docs/assets/icons/svg/share.svg new file mode 100644 index 0000000..74abe1c --- /dev/null +++ b/docs/assets/icons/svg/share.svg @@ -0,0 +1,60 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + inkscape:version="1.0 (4035a4fb49, 2020-05-01)" + sodipodi:docname="share.svg" + id="svg14" + version="1.1" + stroke-linejoin="round" + stroke-linecap="round" + fill="none" + stroke="currentColor" + stroke-width="2" + viewBox="0 0 24 24" + height="24" + width="24" + class="icon icon-tabler icon-tabler-share"> + <metadata + id="metadata20"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <defs + id="defs18" /> + <sodipodi:namedview + inkscape:current-layer="svg14" + inkscape:window-maximized="1" + inkscape:window-y="25" + inkscape:window-x="0" + inkscape:cy="12" + inkscape:cx="12.147014" + inkscape:zoom="27.208333" + showgrid="false" + id="namedview16" + inkscape:window-height="1031" + inkscape:window-width="1920" + inkscape:pageshadow="2" + inkscape:pageopacity="0" + guidetolerance="10" + gridtolerance="10" + objecttolerance="10" + borderopacity="1" + bordercolor="#666666" + pagecolor="#ffffff" /> + <path + id="path853" + d="M 18 2 C 15.802706 2 14 3.8027056 14 6 C 14 6.2702143 14.104344 6.5080111 14.15625 6.7636719 L 8.9921875 9.4238281 C 8.2567433 8.5706902 7.2058754 8 6 8 C 3.8027056 8 2 9.8027056 2 12 C 2 14.197294 3.8027056 16 6 16 C 7.2058754 16 8.2567433 15.42931 8.9921875 14.576172 L 14.15625 17.236328 C 14.104344 17.491989 14 17.729786 14 18 C 14 20.197294 15.802706 22 18 22 C 20.059067 22 21.712602 20.397947 21.919922 18.390625 A 1 1 0 0 0 22 18 A 1 1 0 0 0 21.921875 17.615234 C 21.717453 1 [...] + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-st [...] +</svg> diff --git a/docs/assets/icons/svg/square-plus.svg b/docs/assets/icons/svg/square-plus.svg new file mode 100644 index 0000000..e1daa81 --- /dev/null +++ b/docs/assets/icons/svg/square-plus.svg @@ -0,0 +1,62 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + class="icon icon-tabler icon-tabler-share" + width="24" + height="24" + viewBox="0 0 24 24" + stroke-width="2" + stroke="currentColor" + fill="none" + stroke-linecap="round" + stroke-linejoin="round" + version="1.1" + id="svg14" + sodipodi:docname="square-plus.svg" + inkscape:version="1.0 (4035a4fb49, 2020-05-01)"> + <metadata + id="metadata20"> + <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> + <defs + id="defs18" /> + <sodipodi:namedview + inkscape:document-rotation="0" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1920" + inkscape:window-height="1031" + id="namedview16" + showgrid="false" + inkscape:zoom="27.208333" + inkscape:cx="12.147014" + inkscape:cy="12" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:current-layer="svg14" /> + <path + id="path11036" + d="M 6 3 C 4.3552972 3 3 4.3552972 3 6 L 3 18 C 3 19.644703 4.3552972 21 6 21 L 18 21 C 19.644703 21 21 19.644703 21 18 L 21 6 C 21 4.3552972 19.644703 3 18 3 L 6 3 z M 6 5 L 18 5 C 18.571297 5 19 5.4287028 19 6 L 19 18 C 19 18.571297 18.571297 19 18 19 L 6 19 C 5.4287028 19 5 18.571297 5 18 L 5 6 C 5 5.4287028 5.4287028 5 6 5 z M 12 8 A 1 1 0 0 0 11 9 L 11 11 L 9 11 A 1 1 0 0 0 8 12 A 1 1 0 0 0 9 13 L 11 13 L 11 15 A 1 1 0 0 0 12 16 A 1 1 0 0 0 13 15 L 13 13 L 15 13 A 1 1 0 0 0 16 [...] + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-st [...] +</svg> diff --git a/docs/assets/icons/svg/trashcan.svg b/docs/assets/icons/svg/trashcan.svg new file mode 100644 index 0000000..a98e7a5 --- /dev/null +++ b/docs/assets/icons/svg/trashcan.svg @@ -0,0 +1,62 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + class="icon icon-tabler icon-tabler-share" + width="24" + height="24" + viewBox="0 0 24 24" + stroke-width="2" + stroke="currentColor" + fill="none" + stroke-linecap="round" + stroke-linejoin="round" + version="1.1" + id="svg14" + sodipodi:docname="trashcan.svg" + inkscape:version="1.0 (4035a4fb49, 2020-05-01)"> + <metadata + id="metadata20"> + <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> + <defs + id="defs18" /> + <sodipodi:namedview + inkscape:document-rotation="0" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1920" + inkscape:window-height="1031" + id="namedview16" + showgrid="false" + inkscape:zoom="27.208333" + inkscape:cx="12.147014" + inkscape:cy="12" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:current-layer="svg14" /> + <path + id="path11032" + d="M 10 2 C 8.9072752 2.0000001 8 2.9072752 8 4 L 8 6 L 4.9746094 6 L 4 6 A 1 1 0 0 0 3 7 A 1 1 0 0 0 4 8 L 4.0800781 8 L 5.0039062 19.083984 L 5 19 C 5 20.64501 6.3549903 22 8 22 L 16 22 C 17.64501 22 19 20.64501 19 19 L 18.996094 19.083984 L 19.919922 8 L 20 8 A 1 1 0 0 0 21 7 A 1 1 0 0 0 20 6 L 19 6 L 16 6 L 16 4 C 16 2.9072751 15.092725 2 14 2 L 10 2 z M 10 4 L 14 4 L 14 6 L 10 6 L 10 4 z M 6.0859375 8 L 9 8 L 15 8 L 17.914062 8 L 17.003906 18.916016 A 1.0001 1.0001 0 0 0 17 19 [...] + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-st [...] +</svg> diff --git a/docs/assets/icons/svg/user-group.svg b/docs/assets/icons/svg/user-group.svg new file mode 100644 index 0000000..cbab890 --- /dev/null +++ b/docs/assets/icons/svg/user-group.svg @@ -0,0 +1,62 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + class="icon icon-tabler icon-tabler-trash" + width="24" + height="24" + viewBox="0 0 24 24" + stroke-width="2" + stroke="currentColor" + fill="none" + stroke-linecap="round" + stroke-linejoin="round" + version="1.1" + id="svg14" + sodipodi:docname="user-group.svg" + inkscape:version="1.0 (4035a4fb49, 2020-05-01)"> + <metadata + id="metadata20"> + <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> + <defs + id="defs18" /> + <sodipodi:namedview + inkscape:document-rotation="0" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1920" + inkscape:window-height="1031" + id="namedview16" + showgrid="false" + inkscape:zoom="27.208333" + inkscape:cx="12.147014" + inkscape:cy="12" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:current-layer="svg14" /> + <path + id="path833" + d="m 8.9999979,2 c -2.749579,0 -5,2.2504209 -5,5 0,2.7495791 2.250421,5 5,5 2.6120211,0 4.7121331,-2.0509165 4.9218751,-4.6113281 A 1,1 0 0 0 13.999998,7 1,1 0 0 0 13.91992,6.6074219 C 13.70811,4.049038 11.610556,2 8.9999979,2 Z m 6.9980471,0.1308594 a 1,1 0 0 0 -0.966797,0.7519531 1,1 0 0 0 0.720703,1.2167969 c 1.574787,0.4032092 2.255859,1.6231356 2.255859,2.90625 0,1.2831143 -0.681072,2.5030408 -2.255859,2.90625 a 1,1 0 0 0 -0.720703,1.2167966 1,1 0 0 0 1.216797,0.720703 c 2.4356 [...] + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-st [...] +</svg> diff --git a/docs/assets/icons/svg/user.svg b/docs/assets/icons/svg/user.svg new file mode 100644 index 0000000..d93671d --- /dev/null +++ b/docs/assets/icons/svg/user.svg @@ -0,0 +1,62 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + class="icon icon-tabler icon-tabler-trash" + width="24" + height="24" + viewBox="0 0 24 24" + stroke-width="2" + stroke="currentColor" + fill="none" + stroke-linecap="round" + stroke-linejoin="round" + version="1.1" + id="svg14" + sodipodi:docname="user.svg" + inkscape:version="1.0 (4035a4fb49, 2020-05-01)"> + <metadata + id="metadata20"> + <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> + <defs + id="defs18" /> + <sodipodi:namedview + inkscape:document-rotation="0" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1920" + inkscape:window-height="1031" + id="namedview16" + showgrid="false" + inkscape:zoom="27.208333" + inkscape:cx="12.147014" + inkscape:cy="12" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:current-layer="svg14" /> + <path + id="path833" + d="M 12 2 C 9.2504209 2 7.0000001 4.2504209 7 7 C 7.0000001 9.7495791 9.2504209 12 12 12 C 14.612021 12 16.712133 9.9490835 16.921875 7.3886719 A 1 1 0 0 0 17 7 A 1 1 0 0 0 16.921875 6.6171875 C 16.714953 4.0540154 14.614014 2 12 2 z M 12 4 C 13.668699 4 15 5.3313011 15 7 C 15 8.6686989 13.668699 10 12 10 C 10.331301 10 9 8.6686989 9 7 C 9 5.3313011 10.331301 4 12 4 z M 10 14 C 7.2504209 14 5 16.250421 5 19 L 5 21 A 1 1 0 0 0 6 22 A 1 1 0 0 0 7 21 L 7 19 C 7 17.331301 8.3313011 16 1 [...] + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-st [...] +</svg> diff --git a/docs/assets/icons/svg/world.svg b/docs/assets/icons/svg/world.svg new file mode 100644 index 0000000..6b47159 --- /dev/null +++ b/docs/assets/icons/svg/world.svg @@ -0,0 +1,61 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + class="icon icon-tabler icon-tabler-trash" + width="24" + height="24" + viewBox="0 0 24 24" + stroke-width="2" + stroke="currentColor" + fill="none" + stroke-linecap="round" + stroke-linejoin="round" + version="1.1" + id="svg14" + sodipodi:docname="world.svg" + inkscape:version="1.0 (4035a4fb49, 2020-05-01)"> + <metadata + id="metadata20"> + <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> + <defs + id="defs18" /> + <sodipodi:namedview + inkscape:document-rotation="0" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1920" + inkscape:window-height="1031" + id="namedview16" + showgrid="false" + inkscape:zoom="27.208333" + inkscape:cx="12.147014" + inkscape:cy="12" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:current-layer="svg14" /> + <path + d="M 12.5,2.9999997 A 17,17 0 0 1 12.5,21 M 11.5,2.9999997 A 17,17 0 0 0 11.5,21 M 3.5999999,15 H 20.4 M 3.5999999,8.9999998 H 20.4 M 21,12 A 9,9 0 0 1 12,21 9,9 0 0 1 3,12 9,9 0 0 1 12,2.9999997 9,9 0 0 1 21,12" + id="path12" /> +</svg> -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.