add comm page
BIN
content/community/community-bg.png
Normal file
After Width: | Height: | Size: 217 KiB |
|
@ -5,7 +5,9 @@ template: community.html
|
|||
weight: 10
|
||||
extra:
|
||||
menu_title: Community
|
||||
hero_image: donate/donate.png
|
||||
menu_title_pre: Home
|
||||
community_hero_description: Organic Maps is created and maintained by people like you
|
||||
hero_image: community/community-bg.png
|
||||
preview_image: donate/donate.png
|
||||
community_card_title_1: Join the discussion
|
||||
community_card_description_1: Report, bugs, discuss idea, and propose features
|
||||
|
@ -20,4 +22,7 @@ extra:
|
|||
community_card_title_6: Design & Product Management
|
||||
community_card_description_6: Shape the direction of the product and the user experience
|
||||
stay_connected_section_title: Stay Connected
|
||||
donate:
|
||||
title: Donate
|
||||
description: The app runs on your donations, help improve it
|
||||
---
|
||||
|
|
10
sass/common/bred-crum.scss
Normal file
|
@ -0,0 +1,10 @@
|
|||
.bred-crum {
|
||||
padding: 15rem 0 0;
|
||||
&--active {
|
||||
text-decoration: none;
|
||||
}
|
||||
&__row {
|
||||
display: flex;
|
||||
gap: 10rem;
|
||||
}
|
||||
}
|
|
@ -5,18 +5,22 @@
|
|||
left: 0;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
padding: 14rem 0;
|
||||
z-index: 100;
|
||||
|
||||
@media (max-width: $media-md) {
|
||||
background-color: var(--common-green-primery);
|
||||
|
||||
}
|
||||
|
||||
&__container {
|
||||
padding: 14rem 16rem;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
position: relative;
|
||||
}
|
||||
&__link a{
|
||||
|
||||
&__link a {
|
||||
text-decoration: none;
|
||||
font: var(--nav-link);
|
||||
color: var(--common-white);
|
||||
|
@ -35,6 +39,7 @@
|
|||
color: var(--common-green);
|
||||
}
|
||||
}
|
||||
|
||||
&__row {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
|
@ -54,7 +59,7 @@
|
|||
flex-direction: column;
|
||||
gap: 16rem;
|
||||
z-index: 80;
|
||||
transition:left var(--transition), opacity var(--transition);
|
||||
transition: left var(--transition), opacity var(--transition);
|
||||
|
||||
&.is-active {
|
||||
left: 0;
|
||||
|
@ -62,15 +67,17 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
&__btn {
|
||||
@media (max-width: $media-md) {
|
||||
margin-left: auto;
|
||||
.button--main {
|
||||
padding: 8rem 12rem;
|
||||
min-width:107rem;
|
||||
min-width: 107rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&__ul {
|
||||
display: flex;
|
||||
@media (max-width: $media-md) {
|
||||
|
@ -83,66 +90,87 @@
|
|||
border-bottom: 1rem solid var(--common-green-border);
|
||||
}
|
||||
}
|
||||
|
||||
&__menu-btn {
|
||||
display: none;
|
||||
@media (max-width: $media-md) {
|
||||
display: block;
|
||||
padding: 8rem 0 8rem 8rem ;
|
||||
padding: 8rem 0 8rem 8rem;
|
||||
margin-left: 20rem;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
}
|
||||
|
||||
&__item {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
&__mobile {
|
||||
display: none;
|
||||
@media (max-width: $media-md) {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
||||
&__app-link {
|
||||
padding-bottom: 30rem;
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
gap: 16rem 0;
|
||||
|
||||
a {
|
||||
display: block;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
svg {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
&__card {
|
||||
padding: 20rem 0;
|
||||
}
|
||||
|
||||
&__icon-title {
|
||||
color: var(--common-black);
|
||||
}
|
||||
|
||||
&__icon-text {
|
||||
color: var(--common-grey-v2);
|
||||
margin-bottom: 20rem;
|
||||
}
|
||||
|
||||
&__line {
|
||||
background-color: var( --common-line-color);
|
||||
background-color: var(--common-line-color);
|
||||
height: 1rem;
|
||||
max-width: 240rem;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
&--green {
|
||||
animation: header-play 2.2s ease-in-out;
|
||||
background-color: var(--common-green-primery);
|
||||
|
||||
.header {
|
||||
&__logo {
|
||||
transition: color var(--transition);
|
||||
color: var(--common-green);
|
||||
}
|
||||
&__link a{
|
||||
transition: color var(--transition);
|
||||
color: var(--common-black);
|
||||
}
|
||||
&__logo {
|
||||
transition: color var(--transition);
|
||||
color: var(--common-green);
|
||||
}
|
||||
|
||||
&__link a {
|
||||
transition: color var(--transition);
|
||||
color: var(--common-black);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes header-play {
|
||||
from{
|
||||
max-height: 0;
|
||||
}
|
||||
to {
|
||||
max-height: 1200rem;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
}
|
||||
&--right-play {
|
||||
.animation-item {
|
||||
left: -20rem!important;
|
||||
left: 38rem!important;
|
||||
opacity: 1!important;
|
||||
transition: left var(--transition), opacity var(--transition);
|
||||
}
|
||||
|
@ -28,7 +28,7 @@
|
|||
}
|
||||
&--left-play {
|
||||
.animation-item {
|
||||
right: -20rem!important;
|
||||
right: 40rem!important;
|
||||
opacity: 1!important;
|
||||
transition: right var(--transition), opacity var(--transition);
|
||||
}
|
||||
|
@ -51,5 +51,12 @@
|
|||
}
|
||||
|
||||
}
|
||||
&--play-right-revers {
|
||||
.animation-item {
|
||||
left: 170rem!important;
|
||||
opacity: 1!important;
|
||||
transition: left var(--transition), opacity var(--transition);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -34,8 +34,11 @@
|
|||
}
|
||||
|
||||
&--card {
|
||||
background-color: var(--common-green);
|
||||
max-width: 170rem;
|
||||
text-align: left;
|
||||
background-color: var(--common-green-btn-social);
|
||||
font: var(--p-sub);
|
||||
gap: 10rem;
|
||||
padding: 8rem;
|
||||
flex-direction: row-reverse;
|
||||
svg {
|
||||
|
|
38
sass/component/header-sub.scss
Normal file
|
@ -0,0 +1,38 @@
|
|||
@import "../variables/media";
|
||||
|
||||
.hero-sub {
|
||||
background-size: cover;
|
||||
padding: var(--menu-height) 0 124rem;
|
||||
position: relative;
|
||||
|
||||
&:before {
|
||||
content: "";
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
display: block;
|
||||
background: var(--common-green-gradient);
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
}
|
||||
|
||||
&__container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
z-index: 10;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
&__title {
|
||||
padding: 60rem 0 22rem;
|
||||
z-index: 3;
|
||||
position: relative;
|
||||
@media (max-width: $media-md) {
|
||||
padding: 40rem 0 10rem;
|
||||
}
|
||||
}
|
||||
|
||||
&__description {
|
||||
max-width: 346rem;
|
||||
}
|
||||
}
|
9
sass/component/icons.scss
Normal file
|
@ -0,0 +1,9 @@
|
|||
.icon-green {
|
||||
background-color: var(--common-green);
|
||||
color: var(--common-white);
|
||||
width: fit-content;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
padding: 8rem;
|
||||
border-radius: 8rem;
|
||||
}
|
|
@ -12,14 +12,18 @@
|
|||
// Common Style
|
||||
@import "./common/header";
|
||||
@import "./common/footer";
|
||||
@import "./common/bred-crum";
|
||||
|
||||
// Component Style
|
||||
@import "./component/lang-switcher";
|
||||
@import "./component/buttons";
|
||||
@import "./component/switch-theme";
|
||||
@import "./component/animation";
|
||||
@import "./component/header-sub";
|
||||
@import "./component/icons";
|
||||
|
||||
// Pages Style
|
||||
@import "./pages/home";
|
||||
@import "./pages/community";
|
||||
|
||||
|
||||
|
|
153
sass/pages/community.scss
Normal file
|
@ -0,0 +1,153 @@
|
|||
@import "../variables/media";
|
||||
|
||||
.section-community {
|
||||
padding: var(--container-mob-section) 0;
|
||||
|
||||
&__container {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
gap: 84rem 34rem;
|
||||
@media (max-width: $media-md) {
|
||||
grid-template-columns: 1fr;
|
||||
gap: 30rem 34rem;
|
||||
}
|
||||
}
|
||||
|
||||
&__img-row {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
&__icon {
|
||||
position: absolute;
|
||||
bottom: -5rem;
|
||||
right: 27rem;
|
||||
}
|
||||
|
||||
&__item {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: flex-start;
|
||||
}
|
||||
|
||||
&__img {
|
||||
max-width: 370rem;
|
||||
@media (max-width: $media-md) {
|
||||
max-width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
&__title {
|
||||
padding: 20rem 0 0;
|
||||
}
|
||||
|
||||
&__description {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
&__line {
|
||||
height: 1rem;
|
||||
background-color: var(--green-button);
|
||||
width: 275rem;
|
||||
margin: 10rem 0;
|
||||
}
|
||||
}
|
||||
|
||||
.section-social {
|
||||
margin-bottom: var(--container-mob-section);
|
||||
|
||||
&__row {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
gap: 22rem;
|
||||
@media (max-width: $media-md) {
|
||||
gap: 6rem;
|
||||
}
|
||||
}
|
||||
|
||||
&__title {
|
||||
color: var(--black-white);
|
||||
text-align: center;
|
||||
margin-bottom: 24rem;
|
||||
@media (max-width: $media-md) {
|
||||
margin-bottom: 20rem;
|
||||
}
|
||||
}
|
||||
|
||||
&__item {
|
||||
width: 59px;
|
||||
height: 59px;
|
||||
border: 2rem solid var(--black-white);
|
||||
padding: 13rem;
|
||||
border-radius: 6rem;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
|
||||
svg {
|
||||
color: var(--black-white);
|
||||
}
|
||||
|
||||
a {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
@media (max-width: $media-md) {
|
||||
width: 23px;
|
||||
height: 23px;
|
||||
svg {
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.donate {
|
||||
background-color: var(--bg-green);
|
||||
padding: 77rem 0;
|
||||
margin: 0 var(--container-mob-section) var(--container-mob-section);
|
||||
border-radius: var(--border-r-24);
|
||||
@media (max-width: $media-md) {
|
||||
padding: 20rem 0;
|
||||
margin: 0 14rem 50rem;
|
||||
}
|
||||
|
||||
&__container {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: 30rem;
|
||||
@media (max-width: $media-md) {
|
||||
flex-direction: column-reverse;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
||||
&__line {
|
||||
background-color: var(--green-button);
|
||||
width: 120rem;
|
||||
height: 1rem;
|
||||
margin: 20rem 0;
|
||||
}
|
||||
|
||||
&__content {
|
||||
max-width: 351rem;
|
||||
@media (max-width: $media-md) {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
}
|
||||
|
||||
&__description {
|
||||
margin-bottom: 30rem;
|
||||
color: var(--black-white);
|
||||
}
|
||||
|
||||
&__img {
|
||||
svg {
|
||||
color: var(--green-button);
|
||||
}
|
||||
}
|
||||
}
|
|
@ -224,6 +224,7 @@ margin-bottom: 35rem;
|
|||
margin-left: -50rem;
|
||||
.services__card {
|
||||
justify-content: flex-start;
|
||||
|
||||
}
|
||||
.services__img--first {
|
||||
left: auto;
|
||||
|
@ -246,7 +247,7 @@ margin-bottom: 35rem;
|
|||
max-width: 498rem;
|
||||
}
|
||||
&__title {
|
||||
max-width: 357rem;
|
||||
max-width: 367rem;
|
||||
}
|
||||
&__description {
|
||||
margin: 24rem 0;
|
||||
|
@ -258,6 +259,9 @@ margin-bottom: 35rem;
|
|||
display: flex;
|
||||
justify-content: flex-end;
|
||||
overflow: hidden;
|
||||
&--start {
|
||||
justify-content: flex-start;
|
||||
}
|
||||
@media (max-width: $media-md) {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
|
@ -276,6 +280,8 @@ margin-bottom: 35rem;
|
|||
&__img {
|
||||
padding: 20rem;
|
||||
z-index: 3;
|
||||
max-width: 310rem;
|
||||
|
||||
@media (max-width: $media-md) {
|
||||
max-width: 140rem;
|
||||
max-height: 240rem;
|
||||
|
|
|
@ -11,6 +11,9 @@
|
|||
--common-green-border: #99C4AF;
|
||||
--common-line-color: #AEC5BA;
|
||||
--common-black-sub: #26312C;
|
||||
--common-green-btn-social: #33895E;
|
||||
|
||||
--common-green-gradient: linear-gradient(90deg, #006C35 0%, rgba(0, 96, 49, 0.00) 100%);
|
||||
}
|
||||
|
||||
// Theme COLOR change
|
||||
|
|
|
@ -6,14 +6,20 @@
|
|||
--sub-fonst: 'Lato', sans-serif;
|
||||
|
||||
--h1: 300 48rem/60rem var(--sub-fonst);
|
||||
--h1-inter: 700 36rem/46rem var(--main-font);
|
||||
--h1-sub: 400 24rem/32rem var(--main-font);
|
||||
--h1-sub_v2: 300 24rem/32rem var(--main-font);
|
||||
--h3-boold: 700 24rem/32rem var(--main-font);
|
||||
--h4: 500 18rem/28rem var(--main-font);
|
||||
--h5: 500 20rem/28rem var(--main-font);
|
||||
--h6: 500 30rem/36rem var(--main-font);
|
||||
--p: 300 18rem/28rem var(--main-font);
|
||||
--p-md: 400 16rem/28rem var(--main-font);
|
||||
--p-sm: 500 14rem/28rem var(--main-font);
|
||||
--p-sub: 300 12rem/28rem var(--main-font);
|
||||
--p-sub: 300 12rem/15rem var(--main-font);
|
||||
--p-card: 300 17rem/24rem var(--main-font);
|
||||
--nav-link: 500 16rem/28rem var(--main-font);
|
||||
--nav-bred: 400 13rem/18rem var(--main-font);
|
||||
}
|
||||
|
||||
@media (max-width: $media-md) {
|
||||
|
@ -25,8 +31,10 @@
|
|||
--p-md: 400 16rem/28rem var(--main-font);
|
||||
--p-sm: 500 14rem/28rem var(--main-font);
|
||||
--p-sm-light: 300 14rem/28rem var(--main-font);
|
||||
--p-sub: 300 12rem/28rem var(--main-font);
|
||||
--p-sub: 300 12rem/15rem var(--main-font);
|
||||
--nav-link: 500 13rem/24rem var(--main-font);
|
||||
|
||||
--h1-inter: 500 24rem/36rem var(--main-font);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -35,6 +43,9 @@
|
|||
font: var(--h1);
|
||||
color: var(--common-white);
|
||||
}
|
||||
.h1-inter {
|
||||
font: var( --h1-inter);
|
||||
}
|
||||
.h1-sub {
|
||||
font: var(--h1-sub);
|
||||
color: var(--common-white);
|
||||
|
@ -47,6 +58,10 @@
|
|||
font: var(--h1-sub);
|
||||
color: var(--black-white);
|
||||
}
|
||||
.h2-sub_v2{
|
||||
font: var(--h1-sub_v2);
|
||||
color: var(--common-white);
|
||||
}
|
||||
|
||||
.h3-bold {
|
||||
font: var( --h3-boold);
|
||||
|
@ -56,6 +71,13 @@
|
|||
font: var(--h4);
|
||||
}
|
||||
|
||||
.h5 {
|
||||
font: var(--h5);
|
||||
color: var(--black-white);
|
||||
}
|
||||
.h6 {
|
||||
font: var(--h6);
|
||||
}
|
||||
// Text
|
||||
.p{
|
||||
font: var(--p);
|
||||
|
@ -69,7 +91,14 @@
|
|||
.p-sm-light {
|
||||
font: var(--p-sm-light);
|
||||
}
|
||||
.p-card {
|
||||
font: var(--p-card);
|
||||
}
|
||||
.nav-link{
|
||||
font: var(--nav-link);
|
||||
}
|
||||
.nav-bred {
|
||||
font: var(--nav-bred);
|
||||
color: var(--common-white);
|
||||
}
|
||||
|
||||
|
|
|
@ -13,4 +13,6 @@
|
|||
|
||||
--container-mob-section: 60rem;
|
||||
--container-mob-padding: 16rem;
|
||||
|
||||
--menu-height: 55rem;
|
||||
}
|
BIN
static/images/sections/map-m-2.png
Normal file
After Width: | Height: | Size: 130 KiB |
BIN
static/images/sections/map-m-3.png
Normal file
After Width: | Height: | Size: 216 KiB |
BIN
static/images/sections/map-m-4.png
Normal file
After Width: | Height: | Size: 228 KiB |
Before Width: | Height: | Size: 227 KiB After Width: | Height: | Size: 137 KiB |
BIN
static/images/sections/map-s-2.png
Normal file
After Width: | Height: | Size: 136 KiB |
BIN
static/images/sections/map-s-3.png
Normal file
After Width: | Height: | Size: 120 KiB |
BIN
static/images/sections/map-s-4.png
Normal file
After Width: | Height: | Size: 100 KiB |
|
@ -1,7 +1,7 @@
|
|||
{%- if page %}
|
||||
{%- set resource = page %}
|
||||
{%- set resource = page %}
|
||||
{%- elif section %}
|
||||
{%- set resource = section %}
|
||||
{%- set resource = section %}
|
||||
{%- endif %}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
@ -9,96 +9,108 @@
|
|||
<html lang="{{ lang }}" {%- if lang in rtl_langs -%} dir="rtl" {%- endif -%}>
|
||||
|
||||
<head>
|
||||
<meta name="robots" content="noindex">
|
||||
<!-- <script>-->
|
||||
<!-- var password = "tutorial";-->
|
||||
<!-- (function passcodeprotect() {-->
|
||||
<!-- var passcode = prompt("Enter PassCode");-->
|
||||
<!-- while (passcode !== admin) {-->
|
||||
<!-- alert("Incorrect PassCode");-->
|
||||
<!-- return passcodeprotect();-->
|
||||
<!-- }-->
|
||||
<!-- }());-->
|
||||
<!-- alert('Welcome To The TP..!');-->
|
||||
<!-- </script>-->
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover">
|
||||
<meta name="robots" content="noindex">
|
||||
<!-- <script>-->
|
||||
<!-- var password = "tutorial";-->
|
||||
<!-- (function passcodeprotect() {-->
|
||||
<!-- var passcode = prompt("Enter PassCode");-->
|
||||
<!-- while (passcode !== admin) {-->
|
||||
<!-- alert("Incorrect PassCode");-->
|
||||
<!-- return passcodeprotect();-->
|
||||
<!-- }-->
|
||||
<!-- }());-->
|
||||
<!-- alert('Welcome To The TP..!');-->
|
||||
<!-- </script>-->
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="viewport"
|
||||
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover">
|
||||
|
||||
<meta name="description" content="{{ resource.description }}">
|
||||
<meta name="description" content="{{ resource.description }}">
|
||||
|
||||
{% block rss %}
|
||||
<link rel="alternate" type="application/rss+xml" title="RSS" href="{{ get_url(path="rss.xml", trailing_slash=false) }}">
|
||||
{% endblock %}
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Lato:wght@300&display=swap"
|
||||
rel="stylesheet">
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Lato:wght@300&display=swap"
|
||||
rel="stylesheet">
|
||||
|
||||
<link rel="canonical" href="{{ config.base_url | safe }}{{ resource.path | safe }}">
|
||||
{% block rss %}
|
||||
<link rel="alternate" type="application/rss+xml" title="RSS"
|
||||
href="{{ get_url(path="rss.xml", trailing_slash=false) }}">
|
||||
{% endblock %}
|
||||
|
||||
{%- set preview_image = 'images/screenshots/prague.jpg' -%}
|
||||
{%- if resource.extra.preview_image -%}
|
||||
{%- set preview_image = resource.extra.preview_image -%}
|
||||
{%- elif resource.assets %}
|
||||
{%- set basename = resource.assets[0] | split(pat='/') | last %}
|
||||
{%- if basename is ending_with('.jpg') or basename is ending_with('.jpeg') or basename is ending_with('.png') or basename is ending_with('.webp') %}
|
||||
{%- set preview_image = resource.path ~ basename -%}
|
||||
{%- endif %}
|
||||
{%- endif %}
|
||||
<meta property="og:image" content="{{ get_url(path=preview_image) }}">
|
||||
<meta property="og:url" content="{{ current_url | safe }}">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:title" content="{{ resource.title }}">
|
||||
{%- if resource.description -%}
|
||||
<meta property="og:description" content="{{ resource.description }}">
|
||||
{%- endif -%}
|
||||
<link rel="canonical" href="{{ config.base_url | safe }}{{ resource.path | safe }}">
|
||||
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="{{ resource.title }}">
|
||||
{%- if resource.description -%}
|
||||
<meta name="twitter:description" content="{{ resource.description }}">
|
||||
{%- endif -%}
|
||||
{%- set preview_image = 'images/screenshots/prague.jpg' -%}
|
||||
{%- if resource.extra.preview_image -%}
|
||||
{%- set preview_image = resource.extra.preview_image -%}
|
||||
{%- elif resource.assets %}
|
||||
{%- set basename = resource.assets[0] | split(pat='/') | last %}
|
||||
{%- if basename is ending_with('.jpg') or basename is ending_with('.jpeg') or basename is ending_with('.png') or basename is ending_with('.webp') %}
|
||||
{%- set preview_image = resource.path ~ basename -%}
|
||||
{%- endif %}
|
||||
{%- endif %}
|
||||
<meta property="og:image" content="{{ get_url(path=preview_image) }}">
|
||||
<meta property="og:url" content="{{ current_url | safe }}">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:title" content="{{ resource.title }}">
|
||||
{%- if resource.description -%}
|
||||
<meta property="og:description" content="{{ resource.description }}">
|
||||
{%- endif -%}
|
||||
|
||||
<meta name="apple-itunes-app" content="app-id=1567437057">
|
||||
<meta name="wikidata" content="Q107078602">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="{{ resource.title }}">
|
||||
{%- if resource.description -%}
|
||||
<meta name="twitter:description" content="{{ resource.description }}">
|
||||
{%- endif -%}
|
||||
|
||||
{% if resource.date -%}
|
||||
<meta property="article:published_time" content="{{ resource.date }}">
|
||||
{%- endif -%}
|
||||
<meta name="apple-itunes-app" content="app-id=1567437057">
|
||||
<meta name="wikidata" content="Q107078602">
|
||||
|
||||
<meta name="generator" content="Zola">
|
||||
{% if resource.date -%}
|
||||
<meta property="article:published_time" content="{{ resource.date }}">
|
||||
{%- endif -%}
|
||||
|
||||
{%- block meta -%}{%- endblock %}
|
||||
<meta name="generator" content="Zola">
|
||||
|
||||
<link href="{{ get_url(path="main.css", cachebust=true) }}" rel="stylesheet" type="text/css">
|
||||
{%- block meta -%}{%- endblock %}
|
||||
|
||||
<title>{{ resource.title }}</title>
|
||||
<link href="{{ get_url(path="main.css", cachebust=true) }}" rel="stylesheet" type="text/css">
|
||||
|
||||
{%- if lang == config.default_language %}
|
||||
{% include 'components/language_redirect.html' %}
|
||||
{% endif -%}
|
||||
<title>{{ resource.title }}</title>
|
||||
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Lato:wght@300&display=swap" rel="stylesheet">
|
||||
{%- if lang == config.default_language %}
|
||||
{% include 'components/language_redirect.html' %}
|
||||
{% endif -%}
|
||||
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Lato:wght@300&display=swap"
|
||||
rel="stylesheet">
|
||||
</head>
|
||||
|
||||
<body class="light">
|
||||
<div class="wrapper">
|
||||
<div class="wrapper">
|
||||
<header class="header">
|
||||
{% include 'common/header.html' %}
|
||||
{% include 'common/header.html' %}
|
||||
</header>
|
||||
|
||||
<main class="main">
|
||||
{% block content %}{% endblock %}
|
||||
{% block content %}{% endblock %}
|
||||
</main>
|
||||
|
||||
<footer class="footer">
|
||||
{% include 'common/footer.html' %}
|
||||
{% include 'common/footer.html' %}
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{% include 'shortcodes/switch-theme.html' %}
|
||||
{% include 'shortcodes/header-switch.html' %}
|
||||
{% include 'shortcodes/animation-section-js.html' %}
|
||||
{% include 'shortcodes/paralax.html' %}
|
||||
{% include 'shortcodes/switch-theme.html' %}
|
||||
{% include 'shortcodes/header-switch.html' %}
|
||||
{% include 'shortcodes/animation-section-js.html' %}
|
||||
{% include 'shortcodes/paralax.html' %}
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
|
|
@ -1,105 +1,171 @@
|
|||
{% extends "base.html" %}
|
||||
|
||||
|
||||
|
||||
{%- block content %}
|
||||
{% include 'section/hero.html' %}
|
||||
|
||||
<section>
|
||||
<div>
|
||||
<img src="images/community/discussion-card-banner.png">
|
||||
<h2>
|
||||
{{ page.extra.community_card_title_1 | safe }}
|
||||
</h2>
|
||||
<p>
|
||||
{{ page.extra.community_card_description_1 | safe }}
|
||||
</p>
|
||||
</div>
|
||||
<section class="hero-sub" style="background-image: url({{ page.extra.hero_image | safe }})">
|
||||
<div class="container hero-sub__container">
|
||||
<nav class="bred-crum">
|
||||
<ul class="bred-crum__row">
|
||||
<li class="bred-crum__item">
|
||||
<a class="nav-bred bred-crum__link" href="/">{{ page.extra.menu_title_pre }}</a>
|
||||
</li>
|
||||
<li class="bred-crum__item">
|
||||
<span class="nav-bred">
|
||||
>
|
||||
</span>
|
||||
</li>
|
||||
<li class="bred-crum__item">
|
||||
<a class="nav-bred bred-crum__link bred-crum--active"
|
||||
href="/{{ page.extra.menu_title | lower }}">{{ page.extra.menu_title }}</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
<div class="hero-sub__content">
|
||||
<h1 class="h1 hero-sub__title">
|
||||
{{ page.extra.menu_title }}
|
||||
</h1>
|
||||
<p class="h2-sub_v2 hero-sub__description">
|
||||
{{ page.extra.community_hero_description }}
|
||||
</p>
|
||||
|
||||
<div>
|
||||
<img src="images/community/contribute-code-banner.png">
|
||||
<h2>
|
||||
{{ page.extra.community_card_title_2 | safe }}
|
||||
</h2>
|
||||
<p>
|
||||
{{ page.extra.community_card_description_2 | safe }}
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<div>
|
||||
<img src="images/community/location-info-banner.png">
|
||||
<h2>
|
||||
{{ page.extra.community_card_title_3 | safe }}
|
||||
</h2>
|
||||
<p>
|
||||
{{ page.extra.community_card_description_3 | safe }}
|
||||
</p>
|
||||
</div>
|
||||
<div>
|
||||
<img src="images/community/provide-support-banner.png">
|
||||
<h2>
|
||||
{{ page.extra.community_card_title_4 | safe }}
|
||||
</h2>
|
||||
<p>
|
||||
{{ page.extra.community_card_description_4 | safe }}
|
||||
</p>
|
||||
|
||||
</div>
|
||||
<div>
|
||||
<img src="images/community/translate-banner.png">
|
||||
<h2>
|
||||
{{ page.extra.community_card_title_5 | safe }}
|
||||
</h2>
|
||||
<p>
|
||||
{{ page.extra.community_card_description_5 | safe }}
|
||||
</p>
|
||||
<section class="section-community">
|
||||
<div class="container section-community__container">
|
||||
<div class="section-community__item">
|
||||
<div class="section-community__img-row">
|
||||
<div class="icon-green section-community__icon">
|
||||
{% include 'ui/icons/community/icon-01.html' %}
|
||||
</div>
|
||||
<img class="section-community__img" src="/images/community/discussion-card-banner.png" alt="img">
|
||||
</div>
|
||||
<h2 class="h5 section-community__title">
|
||||
{{ page.extra.community_card_title_1 | safe }}
|
||||
</h2>
|
||||
<div class="section-community__line"></div>
|
||||
<p class="p-card section-community__description">
|
||||
{{ page.extra.community_card_description_1 | safe }}
|
||||
</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div>
|
||||
<img src="images/community/design-product-banner.png">
|
||||
<h2>
|
||||
{{ page.extra.community_card_title_6 | safe }}
|
||||
<div class="section-community__item">
|
||||
<div class="section-community__img-row">
|
||||
<div class="icon-green section-community__icon">
|
||||
{% include 'ui/icons/community/icon-02.html' %}
|
||||
</div>
|
||||
<img class="section-community__img" src="/images/community/contribute-code-banner.png" alt="img">
|
||||
</div>
|
||||
<h2 class="h5 section-community__title">
|
||||
{{ page.extra.community_card_title_2 | safe }}
|
||||
</h2>
|
||||
<div class="section-community__line"></div>
|
||||
<p class="p-card section-community__description">
|
||||
{{ page.extra.community_card_description_2 | safe }}
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="section-community__item">
|
||||
|
||||
<div class="section-community__img-row">
|
||||
<div class="icon-green section-community__icon">
|
||||
{% include 'ui/icons/community/icon-03.html' %}
|
||||
</div>
|
||||
<img class="section-community__img" src="/images/community/location-info-banner.png" alt="img">
|
||||
</div>
|
||||
<h2 class="h5 section-community__title">
|
||||
{{ page.extra.community_card_title_3 | safe }}
|
||||
</h2>
|
||||
<div class="section-community__line"></div>
|
||||
<p class="p-card section-community__description">
|
||||
{{ page.extra.community_card_description_3 | safe }}
|
||||
</p>
|
||||
</div>
|
||||
<div class="section-community__item">
|
||||
|
||||
<div class="section-community__img-row">
|
||||
<div class="icon-green section-community__icon">
|
||||
{% include 'ui/icons/community/icon-04.html' %}
|
||||
</div>
|
||||
<img class="section-community__img" src="/images/community/provide-support-banner.png" alt="img">
|
||||
</div>
|
||||
<h2 class="h5 section-community__title">
|
||||
{{ page.extra.community_card_title_4 | safe }}
|
||||
</h2>
|
||||
<div class="section-community__line"></div>
|
||||
<p class="p-card section-community__description">
|
||||
{{ page.extra.community_card_description_4 | safe }}
|
||||
</p>
|
||||
|
||||
</div>
|
||||
<div class="section-community__item">
|
||||
|
||||
<div class="section-community__img-row">
|
||||
<div class="icon-green section-community__icon">
|
||||
{% include 'ui/icons/community/icon-05.html' %}
|
||||
</div>
|
||||
<img class="section-community__img" src="/images/community/translate-banner.png" alt="img">
|
||||
</div>
|
||||
<h2 class="h5 section-community__title">
|
||||
{{ page.extra.community_card_title_5 | safe }}
|
||||
</h2>
|
||||
<div class="section-community__line"></div>
|
||||
<p class="p-card section-community__description">
|
||||
{{ page.extra.community_card_description_5 | safe }}
|
||||
</p>
|
||||
|
||||
</div>
|
||||
<div class="section-community__item">
|
||||
|
||||
<div class="section-community__img-row">
|
||||
<div class="icon-green section-community__icon">
|
||||
{% include 'ui/icons/community/icon-06.html' %}
|
||||
</div>
|
||||
<img class="section-community__img" src="/images/community/design-product-banner.png" alt="img">
|
||||
</div>
|
||||
<h2 class="h5 section-community__title">
|
||||
{{ page.extra.community_card_title_6 | safe }}
|
||||
</h2>
|
||||
<div class="section-community__line"></div>
|
||||
<p class="p-card section-community__description">
|
||||
{{ page.extra.community_card_description_6 | safe }}
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="section-social">
|
||||
<h2 class="h1-inter section-social__title">
|
||||
{{ page.extra.stay_connected_section_title | safe }}
|
||||
</h2>
|
||||
<p>
|
||||
{{ page.extra.community_card_description_6 | safe }}
|
||||
</p>
|
||||
</div>
|
||||
</section>
|
||||
<section>
|
||||
<h2 style="text-align: center;">
|
||||
{{ page.extra.stay_connected_section_title | safe }}
|
||||
</h2>
|
||||
<a href="#">
|
||||
<img src="logos/instagram-dark-icon.png" alt="instagram">
|
||||
</a>
|
||||
<a href="#">
|
||||
<img src="logos/twitter-dark-icon.png" alt="twitter">
|
||||
</a>
|
||||
<a href="#">
|
||||
<img src="logos/telegram-dark-icon.png" alt="telegram">
|
||||
</a>
|
||||
<a href="#">
|
||||
<img src="logos/linkedin-dark-icon.png" alt="linkedin">
|
||||
</a>
|
||||
<a href="#">
|
||||
<img src="logos/facebook-dark-icon.png" alt="facebook">
|
||||
</a>
|
||||
<a href="#">
|
||||
<img src="logos/mastodon-dark-icon.png" alt="mastodon">
|
||||
</a>
|
||||
<a href="#">
|
||||
<img src="logos/mail-dark-icon.png" alt="mail">
|
||||
</a>
|
||||
<a href="#">
|
||||
<img src="logos/matrix-dark-icon.png" alt="matrix">
|
||||
</a>
|
||||
<a href="#">
|
||||
<img src="logos/reddit-dark-icon.png" alt="reddit">
|
||||
</a>
|
||||
<a href="#">
|
||||
<img src="logos/github-dark-icon.png" alt="github">
|
||||
</a>
|
||||
</section>
|
||||
<div>
|
||||
<img src="images/donation-banner.png" alt="donation">
|
||||
</div>
|
||||
<ul class="container section-social__row">
|
||||
<li class="section-social__item">{% include 'ui/icons/social/instagram.html' %}</li>
|
||||
<li class="section-social__item">{% include 'ui/icons/social/telegram.html' %}</li>
|
||||
<li class="section-social__item">{% include 'ui/icons/social/linkidin.html' %}</li>
|
||||
<li class="section-social__item">{% include 'ui/icons/social/facebook.html' %}</li>
|
||||
<li class="section-social__item"> {% include 'ui/icons/social/frame.html' %}</li>
|
||||
<li class="section-social__item">{% include 'ui/icons/social/mail.html' %}</li>
|
||||
<li class="section-social__item">{% include 'ui/icons/social/matrix.html' %}</li>
|
||||
<li class="section-social__item">{% include 'ui/icons/social/reddid.html' %}</li>
|
||||
<li class="section-social__item">{% include 'ui/icons/social/git.html' %}</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="donate">
|
||||
<div class="container donate__container">
|
||||
<div class="donate__content">
|
||||
<h2 class="h6 donate__title">
|
||||
{{ page.extra.donate.title | safe }}
|
||||
</h2>
|
||||
<div class=" donate__line"></div>
|
||||
<p class="h2-sub_v2 donate__description"> {{ page.extra.donate.description | safe }}</p>
|
||||
{% include 'components/donate-button.html' %}
|
||||
</div>
|
||||
<div class="donate__img">
|
||||
{% include 'ui/icons/community/donate.html' %}
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
{%- endblock content %}
|
1
templates/components/donate-button.html
Normal file
|
@ -0,0 +1 @@
|
|||
<a class="button button--main" href="http://download.com">Donate</a>
|
28
templates/section/hero-sub.html
Normal file
|
@ -0,0 +1,28 @@
|
|||
|
||||
|
||||
<section class="hero-sub" style="background-image: url({{ hero_img | safe }})">
|
||||
<div class="container hero__container">
|
||||
<nav>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="/">{{ page.extra.menu_title_pre }}</a>
|
||||
</li>
|
||||
<li>
|
||||
">"
|
||||
</li>
|
||||
<li>
|
||||
<a href="/{{ page.extra.menu_title | lower }}">{{ page.extra.menu_title }}</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
<div class="hero-sub__content">
|
||||
<h1 class="h1 hero-sub__title">
|
||||
{{ page.extra.menu_title }}
|
||||
</h1>
|
||||
<p class="h2-sub_v2 hero-sub__description">
|
||||
{{ page.extra.community_hero_description }}
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
|
@ -16,11 +16,11 @@
|
|||
</a>
|
||||
</div>
|
||||
<div class="services__card">
|
||||
<img class="services__img services__img--first animation-item" src="/images/sections/map-m-1.png">
|
||||
<img class="services__img" src="/images/sections/map-s-1.png">
|
||||
<img class="services__img services__img--first animation-item" src="/images/sections/map-m-1.png" alt="img">
|
||||
<img class="services__img" src="/images/sections/map-s-1.png" alt="img">
|
||||
<a class="button button--card services__button " href="#">
|
||||
Learn more
|
||||
{% include 'ui/btn-arrow.html' %}
|
||||
Search
|
||||
{% include 'ui/icons/social/card/icon01.html' %}
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -29,11 +29,10 @@
|
|||
<div class="services__item animation animation--left">
|
||||
<div class="services__content">
|
||||
<h3 class="h2 services__title">
|
||||
Offline Search and Route
|
||||
No Tracking or Data Collection
|
||||
</h3>
|
||||
<p class="p services__description">
|
||||
See the place you want to go while in an underground parking garage, and navigate while on a distant
|
||||
hike.
|
||||
The app is designed with privacy as a priority and does not identify users, or track information about them.
|
||||
</p>
|
||||
<a class="button button--transparent services__btn" href="#">
|
||||
Learn more
|
||||
|
@ -41,24 +40,49 @@
|
|||
</a>
|
||||
</div>
|
||||
<div class="services__card">
|
||||
<img class="services__img services__img--first animation-item" src="/images/sections/map-m-1.png">
|
||||
<img class="services__img" src="/images/sections/map-s-1.png">
|
||||
<img class="services__img services__img--first animation-item" src="/images/sections/map-m-2.png" alt="img">
|
||||
<img class="services__img" src="/images/sections/map-s-2.png" alt="img">
|
||||
<a class="button button--card services__button" href="#">
|
||||
Learn more
|
||||
{% include 'ui/btn-arrow.html' %}
|
||||
No additional permissions required
|
||||
{% include 'ui/icons/social/card/icon02.html' %}
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Item End-->
|
||||
<!--Item-->
|
||||
<div class="services__item animation animation--right">
|
||||
<div class="services__item animation animation--right-revers">
|
||||
<div class="services__content">
|
||||
<h3 class="h2 services__title">
|
||||
Offline Search and Route
|
||||
Save Your Battery
|
||||
</h3>
|
||||
<p class="p services__description">
|
||||
See the place you want to go while in an underground parking garage, and navigate while on a distant
|
||||
hike.
|
||||
Save Your Battery
|
||||
Efficiently uses your battery, doesn’t drain your battery like other navigation apps
|
||||
Learn more
|
||||
</p>
|
||||
<a class="button button--transparent services__btn" href="#">
|
||||
Learn more
|
||||
{% include 'ui/btn-arrow.html' %}
|
||||
</a>
|
||||
</div>
|
||||
<div class="services__card services__card--start">
|
||||
<img class="services__img services__img--first animation-item" src="/images/sections/map-m-3.png" alt="img">
|
||||
<img class="services__img" src="/images/sections/map-s-3.png" alt="img">
|
||||
<a class="button button--card services__button" href="#">
|
||||
<span> <b>34%</b> <br> less power usage</span>
|
||||
{% include 'ui/icons/social/card/icon03.html' %}
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Item End-->
|
||||
<!--Item-->
|
||||
<div class="services__item animation animation--left">
|
||||
<div class="services__content">
|
||||
<h3 class="h2 services__title">
|
||||
Free and Built by the Community
|
||||
</h3>
|
||||
<p class="p services__description">
|
||||
People like you helped build the app by adding locations to the OpenStreetMap, giving feedback on features, and contributing code
|
||||
</p>
|
||||
<a class="button button--transparent services__btn" href="#">
|
||||
Learn more
|
||||
|
@ -66,11 +90,11 @@
|
|||
</a>
|
||||
</div>
|
||||
<div class="services__card">
|
||||
<img class="services__img services__img--first animation-item" src="/images/sections/map-m-1.png">
|
||||
<img class="services__img" src="/images/sections/map-s-1.png">
|
||||
<img class="services__img services__img--first animation-item" src="/images/sections/map-m-4.png" alt="img">
|
||||
<img class="services__img" src="/images/sections/map-s-4.png" alt="img">
|
||||
<a class="button button--card services__button" href="#">
|
||||
Learn more
|
||||
{% include 'ui/btn-arrow.html' %}
|
||||
Free for everyone, Made with love
|
||||
{% include 'ui/icons/social/card/icon04.html' %}
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
let animationRight = entry.target.className.includes('animation--right')
|
||||
let animationLeft = entry.target.className.includes('animation--left')
|
||||
let animationDown = entry.target.className.includes('animation--down')
|
||||
let animationRightRevers = entry.target.className.includes('animation--right-revers')
|
||||
if (entry.isIntersecting) {
|
||||
|
||||
if(animationRight) {
|
||||
|
@ -21,6 +22,9 @@
|
|||
if (animationDown) {
|
||||
item.classList.add('animation--down-play');
|
||||
}
|
||||
if (animationRightRevers) {
|
||||
item.classList.add('animation--play-right-revers');
|
||||
}
|
||||
|
||||
} else {
|
||||
if(animationRight) {
|
||||
|
@ -32,6 +36,9 @@
|
|||
if (animationDown) {
|
||||
item.classList.remove('animation--down-play');
|
||||
}
|
||||
if (animationRightRevers) {
|
||||
item.classList.remove('animation--play-right-revers');
|
||||
}
|
||||
}
|
||||
});
|
||||
}, { threshold: 0.3 });
|
||||
|
|
23
templates/ui/icons/community/donate.html
Normal file
|
@ -0,0 +1,23 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="183" height="248" viewBox="0 0 183 248" fill="none">
|
||||
<g clip-path="url(#clip0_167_1287)">
|
||||
<mask id="mask0_167_1287" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="-33" y="0" width="250" height="248">
|
||||
<path d="M-32.5127 3.05176e-05H216.487V248H-32.5127V3.05176e-05Z" fill="currentColor"/>
|
||||
</mask>
|
||||
<g mask="url(#mask0_167_1287)">
|
||||
<path d="M127.949 57.3587C127.949 77.1396 111.849 93.1754 91.9874 93.1754C72.1263 93.1754 56.0254 77.1396 56.0254 57.3587C56.0254 37.5773 72.1263 21.5416 91.9874 21.5416C111.849 21.5416 127.949 37.5773 127.949 57.3587Z" stroke="currentColor" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M82.1794 72.011H94.4393C98.5021 72.011 101.795 68.7313 101.795 64.6849C101.795 60.6384 98.5021 57.3587 94.4393 57.3587H89.5352C85.4724 57.3587 82.1794 54.0785 82.1794 50.032C82.1794 45.9861 85.4724 42.7059 89.5352 42.7059H101.795" stroke="currentColor" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M91.9873 35.428V42.7672" stroke="currentColor" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M91.9873 72.1269V79.4662" stroke="currentColor" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M182.385 127.42H1.5896V93.1676H182.385V127.42Z" stroke="currentColor" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M13.3707 151.774L13.3629 127.42H170.577L170.585 151.774" stroke="currentColor" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M170.612 143.5V244.367H13.3984L13.3977 143.5" stroke="currentColor" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M125.709 162.094C118.035 154.451 105.592 154.451 97.9175 162.094L92.0218 167.966L86.126 162.094C78.4518 154.451 66.0091 154.451 58.3348 162.094C50.6605 169.738 50.6605 182.131 58.3348 189.774L92.0218 223.327L125.709 189.774C133.383 182.131 133.383 169.738 125.709 162.094Z" stroke="currentColor" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M51.6354 93.0137C43.1801 83.5282 38.0449 71.0405 38.0449 57.3589C38.0449 27.6865 62.196 3.63296 91.9875 3.63296C121.778 3.63296 145.93 27.6865 145.93 57.3589C145.93 71.0376 140.797 83.5229 132.344 93.0074" stroke="currentColor" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_167_1287">
|
||||
<rect width="183" height="248" fill="currentColor"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 2.7 KiB |
21
templates/ui/icons/community/icon-01.html
Normal file
|
@ -0,0 +1,21 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none">
|
||||
<g clip-path="url(#clip0_520_11250)">
|
||||
<path d="M27.1055 12.8284C27.1055 9.03247 24.0173 5.94434 20.2214 5.94434C19.345 5.94434 18.4746 6.11328 17.6665 6.43604V3.22021C17.6665 2.40967 17.0068 1.75 16.1963 1.75H9.86499C9.60498 1.75 9.39453 1.96069 9.39453 2.22046C9.39453 2.48047 9.60522 2.69092 9.86499 2.69092H16.1963C16.488 2.69092 16.7256 2.92847 16.7256 3.22021V7.16431C16.7253 7.16895 16.7253 7.17383 16.7256 7.17847V9.41357C16.7256 9.70557 16.488 9.94287 16.1963 9.94287H13.146C12.9341 9.94287 12.7349 10.0254 12.5847 10.1753L11.3728 11.3875L10.1609 10.1753C10.011 10.0254 9.81152 9.94287 9.59961 9.94287H6.54956C6.25757 9.94287 6.02026 9.70557 6.02026 9.41357V3.22046C6.02026 2.92847 6.25757 2.69116 6.54956 2.69116H7.97241C8.23242 2.69116 8.44287 2.48047 8.44287 2.2207C8.44287 1.96069 8.23218 1.75024 7.97241 1.75024H6.54956C5.73877 1.75024 5.0791 2.40967 5.0791 3.22046V9.41382C5.0791 10.2246 5.73877 10.8843 6.54956 10.8843H9.53857L10.8115 12.1572C10.9663 12.3118 11.1697 12.3892 11.3728 12.3892C11.5759 12.3892 11.7793 12.3118 11.9341 12.1572L13.207 10.8843H13.6162C13.4312 11.512 13.3374 12.1633 13.3374 12.8284C13.3374 13.6367 13.4741 14.4194 13.7439 15.1646H1.93384C0.867432 15.1643 0 16.0317 0 17.0979V26.1619C0 27.2283 0.867432 28.0957 1.93384 28.0957L6.39941 28.0964L8.32544 30.0225C8.50952 30.2065 8.75098 30.2983 8.99268 30.2983C9.23438 30.2983 9.47583 30.2065 9.65991 30.0225L11.5876 28.0957H16.0515C17.1179 28.0957 17.9854 27.2283 17.9854 26.1621V22.1936C17.9854 21.9336 17.7747 21.7229 17.5149 21.7229C17.2551 21.7229 17.0444 21.9336 17.0444 22.1936V26.1621C17.0444 26.7092 16.5991 27.1548 16.0518 27.1548H11.5879C11.3357 27.1548 11.0989 27.2529 10.9207 27.4312L8.99097 29.3572L7.0647 27.4309C6.88647 27.2529 6.64966 27.1548 6.39771 27.1548H1.93384C1.38647 27.1548 0.940918 26.7095 0.940918 26.1621V17.0979C0.940918 16.5508 1.38623 16.1052 1.93359 16.1052H16.0515C16.5989 16.1052 17.0442 16.5505 17.0442 17.0979V20.1965C17.0442 20.4563 17.2549 20.667 17.5146 20.667C17.7747 20.667 17.9854 20.4563 17.9854 20.1965V19.3408C18.7009 19.5874 19.4502 19.7124 20.2214 19.7124C24.0173 19.7124 27.1055 16.6243 27.1055 12.8284ZM16.0515 15.1643H14.7554C14.4392 14.4275 14.2786 13.6431 14.2786 12.8284C14.2786 12.1592 14.3884 11.5068 14.6045 10.884H16.1963C17.0068 10.884 17.6665 10.2246 17.6665 9.41357V7.4624C18.459 7.08472 19.3362 6.88525 20.2214 6.88525C23.4983 6.88525 26.1643 9.55127 26.1643 12.8284C26.1643 16.1052 23.4983 18.7712 20.2214 18.7712C19.4446 18.7712 18.6938 18.6245 17.9854 18.3357V17.0979C17.9854 16.0317 17.1179 15.1643 16.0515 15.1643Z" fill="currentColor"/>
|
||||
<path d="M30.6892 20.5227H22.5808C21.8579 20.5227 21.27 21.1108 21.27 21.8335V27.0393C21.27 27.762 21.8579 28.3501 22.5808 28.3501H25.0623L26.1104 29.3982C26.2549 29.5427 26.4448 29.615 26.635 29.615C26.825 29.615 27.0151 29.5427 27.1599 29.3982L28.2078 28.3501H30.6892C31.4119 28.3501 32 27.762 32 27.0393V21.8337C32 21.1108 31.4119 20.5227 30.6892 20.5227ZM31.0591 27.0393C31.0591 27.2432 30.8931 27.4092 30.6892 27.4092H28.1255C27.927 27.4092 27.7407 27.4863 27.6006 27.6265L26.635 28.5923L25.6694 27.6267C25.5293 27.4863 25.3428 27.4092 25.1445 27.4092H22.5808C22.377 27.4092 22.2109 27.2432 22.2109 27.0393V21.8337C22.2109 21.6296 22.3767 21.4639 22.5808 21.4639H30.6892C30.8931 21.4639 31.0591 21.6296 31.0591 21.8337V27.0393Z" fill="currentColor"/>
|
||||
<path d="M9.91431 21.637L10.103 21.479L10.3616 21.2324C10.4148 21.1797 10.4961 21.0859 10.6057 20.9512C10.7153 20.8164 10.7983 20.6946 10.8547 20.5859C10.9111 20.4773 10.9644 20.3442 11.0142 20.1863C11.064 20.0283 11.0889 19.8672 11.0889 19.7026C11.0889 19.2224 10.9045 18.8242 10.5361 18.5083C10.1677 18.1926 9.67407 18.0347 9.05591 18.0347C8.50317 18.0347 8.06226 18.1597 7.7334 18.4097C7.4043 18.6599 7.23975 18.9229 7.23975 19.1992C7.23975 19.3506 7.29053 19.4673 7.39209 19.5496C7.4939 19.6318 7.60693 19.6729 7.73169 19.6729C7.82983 19.6729 7.91675 19.6394 7.99194 19.5723C8.06738 19.5051 8.13159 19.4333 8.18384 19.3572C8.23633 19.281 8.33472 19.2092 8.479 19.1418C8.62329 19.075 8.80347 19.0413 9.01978 19.0413C9.32788 19.0413 9.57397 19.1145 9.75757 19.2607C9.94092 19.4072 10.033 19.6135 10.033 19.8804C10.033 20.0364 9.99512 20.1877 9.91943 20.334C9.84375 20.4802 9.76807 20.5908 9.69238 20.6658C9.6167 20.7405 9.50317 20.8428 9.35205 20.9731L9.06567 21.207C8.6709 21.5583 8.47339 22.0723 8.47339 22.7485C8.47339 22.9568 8.50806 23.0999 8.57715 23.178C8.64624 23.2561 8.76294 23.2949 8.92749 23.2949C9.25635 23.2949 9.4209 23.1765 9.4209 22.9397C9.4209 22.604 9.44727 22.3477 9.5 22.1699C9.55249 21.9922 9.69067 21.8147 9.91431 21.637Z" fill="currentColor"/>
|
||||
<path d="M8.93726 24.0056C8.75293 24.0056 8.60498 24.0715 8.49316 24.2031C8.3811 24.3347 8.32544 24.4927 8.32544 24.6768C8.32544 24.8545 8.3811 25.0107 8.49316 25.1455C8.60498 25.2805 8.75293 25.3479 8.93726 25.3479C9.12134 25.3479 9.2793 25.2805 9.41089 25.1455C9.54248 25.0107 9.6084 24.8545 9.6084 24.6768C9.6084 24.4927 9.54248 24.3347 9.41089 24.2031C9.2793 24.0715 9.12134 24.0056 8.93726 24.0056Z" fill="currentColor"/>
|
||||
<path d="M19.738 13.5613C19.738 13.8115 19.9048 13.9363 20.2388 13.9363C20.3613 13.9363 20.4756 13.9036 20.5813 13.8376C20.6868 13.772 20.7397 13.6799 20.7397 13.5613C20.7397 13.127 20.7634 12.4033 20.8113 11.3899C20.8589 10.3767 20.8828 9.65283 20.8828 9.21875C20.8828 9.0542 20.8215 8.92261 20.6987 8.82397C20.5759 8.7251 20.4226 8.67578 20.2385 8.67578C20.0544 8.67578 19.9021 8.72363 19.781 8.81885C19.6602 8.91431 19.5999 9.04761 19.5999 9.21875C19.5999 9.65283 19.6228 10.3767 19.6689 11.3899C19.7148 12.4033 19.738 13.127 19.738 13.5613Z" fill="currentColor"/>
|
||||
<path d="M20.248 15.9893C20.4385 15.9893 20.6018 15.9219 20.7378 15.7869C20.874 15.6521 20.9421 15.4958 20.9421 15.3181C20.9421 15.134 20.8738 14.9761 20.7378 14.8445C20.6018 14.7129 20.4385 14.647 20.248 14.647C20.0498 14.647 19.8838 14.7129 19.7505 14.8445C19.6169 14.9761 19.5505 15.134 19.5505 15.3181C19.5505 15.5024 19.6169 15.6604 19.7505 15.792C19.8838 15.9236 20.0498 15.9893 20.248 15.9893Z" fill="currentColor"/>
|
||||
<path d="M15.0249 3.71997H7.59741C7.3374 3.71997 7.12695 3.93066 7.12695 4.19043C7.12695 4.4502 7.33765 4.66089 7.59741 4.66089H15.0249C15.2847 4.66089 15.4954 4.4502 15.4954 4.19043C15.4954 3.93066 15.2847 3.71997 15.0249 3.71997Z" fill="currentColor"/>
|
||||
<path d="M15.4954 6.0874C15.4954 5.82739 15.2847 5.61694 15.0249 5.61694H7.59741C7.3374 5.61694 7.12695 5.82739 7.12695 6.0874C7.12695 6.34717 7.33765 6.55786 7.59741 6.55786H15.0249C15.2847 6.55786 15.4954 6.34717 15.4954 6.0874Z" fill="currentColor"/>
|
||||
<path d="M7.59741 7.51367C7.3374 7.51367 7.12695 7.72437 7.12695 7.98413C7.12695 8.24414 7.33765 8.45483 7.59741 8.45483H11.3728C11.6326 8.45483 11.8433 8.24414 11.8433 7.98413C11.8433 7.72437 11.6326 7.51367 11.3728 7.51367H7.59741Z" fill="currentColor"/>
|
||||
<path d="M24.9226 24.4631C24.9226 24.7341 24.7029 24.9539 24.4316 24.9539C24.1606 24.9539 23.9409 24.7341 23.9409 24.4631C23.9409 24.1921 24.1606 23.9724 24.4316 23.9724C24.7029 23.9724 24.9226 24.1921 24.9226 24.4631Z" fill="currentColor"/>
|
||||
<path d="M27.0125 24.4631C27.0125 24.7341 26.7927 24.9539 26.5215 24.9539C26.2505 24.9539 26.0308 24.7341 26.0308 24.4631C26.0308 24.1921 26.2505 23.9724 26.5215 23.9724C26.7927 23.9724 27.0125 24.1921 27.0125 24.4631Z" fill="currentColor"/>
|
||||
<path d="M29.1501 24.4631C29.1501 24.7341 28.9304 24.9539 28.6594 24.9539C28.3882 24.9539 28.1685 24.7341 28.1685 24.4631C28.1685 24.1921 28.3882 23.9724 28.6594 23.9724C28.9304 23.9724 29.1501 24.1921 29.1501 24.4631Z" fill="currentColor"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_520_11250">
|
||||
<rect width="32" height="32" fill="currentColor"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 7.6 KiB |
17
templates/ui/icons/community/icon-02.html
Normal file
|
@ -0,0 +1,17 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none">
|
||||
<g clip-path="url(#clip0_707_1423)">
|
||||
<path d="M12.6255 22.4247C12.5047 22.4247 12.3829 22.3831 12.2836 22.2985L8.86493 19.3876C8.74701 19.287 8.6792 19.1402 8.6792 18.9851C8.6792 18.8304 8.7473 18.6835 8.86493 18.583L12.2836 15.672C12.5056 15.4828 12.839 15.5096 13.0283 15.7316C13.2172 15.9539 13.1907 16.2873 12.9684 16.4763L10.0224 18.9851L12.9684 21.494C13.1907 21.6832 13.2172 22.0167 13.0283 22.2387C12.9236 22.3616 12.775 22.4247 12.6255 22.4247Z" fill="currentColor"/>
|
||||
<path d="M19.3744 22.4247C19.2249 22.4247 19.0763 22.3616 18.972 22.2387C18.7827 22.0167 18.8095 21.6832 19.0315 21.494L21.9776 18.9851L19.0315 16.4763C18.8095 16.2873 18.7827 15.9539 18.972 15.7316C19.1609 15.5096 19.4947 15.4828 19.7164 15.672L23.135 18.583C23.2529 18.6835 23.3207 18.8304 23.3207 18.9851C23.3207 19.1402 23.2529 19.287 23.135 19.3876L19.7164 22.2985C19.617 22.3831 19.4953 22.4247 19.3744 22.4247Z" fill="currentColor"/>
|
||||
<path d="M14.7898 24.6083C14.7535 24.6083 14.7169 24.6044 14.6801 24.5968C14.3947 24.5366 14.2119 24.2563 14.2721 23.9709L16.4027 13.855C16.4628 13.5696 16.7429 13.3869 17.0286 13.447C17.3139 13.5071 17.4967 13.7872 17.4366 14.0729L15.306 24.1887C15.2535 24.4376 15.0342 24.6083 14.7898 24.6083Z" fill="currentColor"/>
|
||||
<path d="M28.4528 30.1196H3.54717C1.59139 30.1196 0 28.5285 0 26.5725V5.43389C0 3.47811 1.59139 1.88672 3.54717 1.88672H28.4528C30.4086 1.88672 32 3.47811 32 5.43389V26.5725C32 28.5285 30.4086 30.1196 28.4528 30.1196ZM3.54717 2.94332C2.17394 2.94332 1.0566 4.06066 1.0566 5.43389V26.5725C1.0566 27.9457 2.17394 29.063 3.54717 29.063H28.4528C29.8261 29.063 30.9434 27.9457 30.9434 26.5725V5.43389C30.9434 4.06066 29.8261 2.94332 28.4528 2.94332H3.54717Z" fill="currentColor"/>
|
||||
<path d="M31.4717 10.3466H0.528302C0.236439 10.3466 0 10.1102 0 9.81834C0 9.52677 0.236439 9.29004 0.528302 9.29004H31.4717C31.7636 9.29004 32 9.52677 32 9.81834C32 10.1102 31.7636 10.3466 31.4717 10.3466Z" fill="currentColor"/>
|
||||
<path d="M9.02649 7.81836C8.10491 7.81836 7.35461 7.06806 7.35461 6.14648C7.35461 5.22461 8.10491 4.47461 9.02649 4.47461C9.94836 4.47461 10.6984 5.22461 10.6984 6.14648C10.6984 7.06806 9.94836 7.81836 9.02649 7.81836ZM9.02649 5.53121C8.68746 5.53121 8.41122 5.80716 8.41122 6.14648C8.41122 6.48581 8.68746 6.76176 9.02649 6.76176C9.36582 6.76176 9.64176 6.48581 9.64176 6.14648C9.64176 5.80716 9.36582 5.53121 9.02649 5.53121Z" fill="currentColor"/>
|
||||
<path d="M3.88977 7.80176C2.9679 7.80176 2.2179 7.05176 2.2179 6.12988C2.2179 5.20801 2.9679 4.45801 3.88977 4.45801C4.81165 4.45801 5.56165 5.20801 5.56165 6.12988C5.56165 7.05176 4.81165 7.80176 3.88977 7.80176ZM3.88977 5.51461C3.55074 5.51461 3.2745 5.79085 3.2745 6.12988C3.2745 6.46921 3.55074 6.74515 3.88977 6.74515C4.2291 6.74515 4.50504 6.46921 4.50504 6.12988C4.50504 5.79085 4.2291 5.51461 3.88977 5.51461Z" fill="currentColor"/>
|
||||
<path d="M14.1633 7.83467C13.2417 7.83467 12.4917 7.08467 12.4917 6.16279C12.4917 5.24121 13.2417 4.49121 14.1633 4.49121C15.0852 4.49121 15.8352 5.24121 15.8352 6.16279C15.8352 7.08467 15.0852 7.83467 14.1633 7.83467ZM14.1633 5.54752C13.8242 5.54752 13.5483 5.82346 13.5483 6.16279C13.5483 6.50212 13.8242 6.77806 14.1633 6.77806C14.5026 6.77806 14.7786 6.50212 14.7786 6.16279C14.7786 5.82346 14.5026 5.54752 14.1633 5.54752Z" fill="currentColor"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_707_1423">
|
||||
<rect width="32" height="32" fill="currentColor"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 3.5 KiB |
4
templates/ui/icons/community/icon-03.html
Normal file
|
@ -0,0 +1,4 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="33" viewBox="0 0 32 33" fill="none">
|
||||
<path d="M19.6942 9.54453C19.6941 8.79107 19.4773 8.05455 19.0713 7.42812C18.6653 6.80169 18.0883 6.31347 17.4133 6.0252C16.7383 5.73693 15.9955 5.66156 15.2789 5.80862C14.5623 5.95567 13.9041 6.31855 13.3875 6.85137C12.8709 7.38419 12.5191 8.06301 12.3766 8.802C12.2341 9.541 12.3073 10.307 12.5869 11.0031C12.8665 11.6992 13.34 12.2941 13.9476 12.7127C14.5551 13.1313 15.2693 13.3547 15.9999 13.3547C16.9794 13.3535 17.9184 12.9517 18.611 12.2374C19.3036 11.5231 19.6931 10.5546 19.6942 9.54453ZM13.1807 9.54453C13.1808 8.96954 13.3462 8.40748 13.656 7.92944C13.9659 7.45139 14.4062 7.07883 14.9214 6.85886C15.4365 6.63889 16.0034 6.58138 16.5502 6.69362C17.0971 6.80586 17.5994 7.0828 17.9936 7.48942C18.3878 7.89604 18.6563 8.41409 18.765 8.97804C18.8738 9.542 18.8179 10.1265 18.6045 10.6578C18.3911 11.189 18.0298 11.643 17.5662 11.9625C17.1025 12.2819 16.5575 12.4524 15.9999 12.4524C15.2524 12.4515 14.5357 12.1448 14.0072 11.5997C13.4786 11.0545 13.1814 10.3154 13.1807 9.54453Z" fill="currentColor"/>
|
||||
<path d="M30.8319 31.2134L27.2654 21.5712C27.2338 21.4858 27.1778 21.4124 27.1048 21.3605C27.0318 21.3087 26.9453 21.2809 26.8567 21.2809H20.1067C20.1479 21.2115 20.1889 21.1443 20.2302 21.0747C22.8274 16.6403 24.1344 12.7612 24.1157 9.54682C24.116 7.32706 23.2613 5.19807 21.7395 3.62819C20.2177 2.05832 18.1535 1.17616 16.001 1.17578C13.8485 1.17541 11.784 2.05684 10.2617 3.62618C8.73944 5.19553 7.88402 7.32423 7.88365 9.54399C7.8649 12.7612 9.1719 16.6408 11.7692 21.0747C11.8104 21.145 11.8514 21.2123 11.8927 21.2809H5.14265C5.05403 21.2809 4.96751 21.3087 4.89453 21.3605C4.82154 21.4124 4.76553 21.4858 4.7339 21.5712L1.1679 31.2134C1.14249 31.2817 1.13359 31.3554 1.14198 31.428C1.15036 31.5007 1.17577 31.5701 1.21601 31.6304C1.25626 31.6907 1.31012 31.7399 1.37296 31.7739C1.43579 31.8079 1.5057 31.8256 1.57665 31.8254H30.4232C30.4941 31.8256 30.564 31.8079 30.6269 31.7739C30.6897 31.7399 30.7435 31.6907 30.7838 31.6304C30.824 31.5701 30.8494 31.5007 30.8578 31.428C30.8662 31.3554 30.8573 31.2817 30.8319 31.2134ZM8.7589 9.54476C8.75907 8.56414 8.94652 7.59316 9.31057 6.68725C9.67461 5.78135 10.2081 4.95826 10.8806 4.26497C11.5531 3.57169 12.3515 3.0218 13.23 2.64669C14.1086 2.27158 15.0503 2.0786 16.0012 2.07877C16.9521 2.07894 17.8936 2.27225 18.7721 2.64768C19.6505 3.0231 20.4487 3.57328 21.1209 4.2668C21.7932 4.96032 22.3265 5.7836 22.6902 6.68964C23.0539 7.59567 23.2411 8.56672 23.2409 9.54734C23.2784 15.956 17.4684 23.8603 15.9999 25.7558C14.5314 23.8611 8.72115 15.9589 8.7589 9.54476ZM15.6667 26.7612C15.7077 26.811 15.7588 26.851 15.8163 26.8784C15.8739 26.9059 15.9365 26.9201 15.9999 26.9201C16.0633 26.9201 16.1259 26.9059 16.1835 26.8784C16.241 26.851 16.2921 26.811 16.3332 26.7612C17.4947 25.302 18.5716 23.7731 19.5582 22.1827H26.5549L27.1149 23.6974L13.4422 28.7121L8.56865 22.182H12.4412C13.4278 23.7726 14.5049 25.3017 15.6667 26.7612ZM13.4269 29.6745H13.4294L21.5862 26.6839L24.7499 30.9231H10.0249L13.4269 29.6745ZM5.4444 22.182H7.4644L12.5749 29.03L7.41415 30.9228H2.21165L5.4444 22.182ZM25.8552 30.9231L22.4529 26.3644L27.4279 24.5399L29.7887 30.9231H25.8552Z" fill="currentColor"/>
|
||||
</svg>
|
After Width: | Height: | Size: 3.2 KiB |
3
templates/ui/icons/community/icon-04.html
Normal file
After Width: | Height: | Size: 6.6 KiB |
26
templates/ui/icons/community/icon-05.html
Normal file
|
@ -0,0 +1,26 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="33" height="33" viewBox="0 0 33 33" fill="none">
|
||||
<g clip-path="url(#clip0_707_1438)">
|
||||
<mask id="mask0_707_1438" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="0" width="33" height="33">
|
||||
<path d="M0 3.8147e-06H33V33H0V3.8147e-06Z" fill="currentColor"/>
|
||||
</mask>
|
||||
<g mask="url(#mask0_707_1438)">
|
||||
<path d="M12.8833 18.0498H2.03337C1.1773 18.0498 0.483398 17.3558 0.483398 16.4998V2.0332C0.483398 1.17714 1.1773 0.483234 2.03337 0.483234H16.5C17.3561 0.483234 18.05 1.17714 18.05 2.0332V12.8831" stroke="currentColor" stroke-width="1.3" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M26.8332 14.95H30.9666C31.8226 14.95 32.5165 15.644 32.5165 16.5V30.9666C32.5165 31.8227 31.8226 32.5166 30.9666 32.5166H16.4999C15.6439 32.5166 14.95 31.8227 14.95 30.9666V16.5C14.95 15.644 15.6439 14.95 16.4999 14.95H24.7667" stroke="currentColor" stroke-width="1.3" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M4.6167 5.65039H13.9167" stroke="currentColor" stroke-width="1.3" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M6.88232 7.71467C7.68322 9.49873 9.29403 12.0733 12.3668 13.917" stroke="currentColor" stroke-width="1.3" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M12.3668 5.65036C12.3668 5.65036 11.3334 10.8171 6.16675 13.917" stroke="currentColor" stroke-width="1.3" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M9.2666 5.65039V4.61708" stroke="currentColor" stroke-width="1.3" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M20.062 28.3838L23.5541 19.2148C23.6255 19.0403 23.8725 19.0401 23.9442 19.2144L27.4045 28.3838" stroke="currentColor" stroke-width="1.3" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M21.1511 26.0996H26.333" stroke="currentColor" stroke-width="1.3" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M11.8502 26.833H9.78341C7.78594 26.833 6.16675 25.2138 6.16675 23.2164V20.1165" stroke="currentColor" stroke-width="1.3" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M10.8167 25.2838L12.8833 26.8338L10.8167 28.3838" stroke="currentColor" stroke-width="1.3" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M21.1499 6.16635H23.2167C25.2141 6.16635 26.8333 7.7856 26.8333 9.783V12.8828" stroke="currentColor" stroke-width="1.3" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M22.1833 7.7168L20.1167 6.16683L22.1833 4.61679" stroke="currentColor" stroke-width="1.3" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_707_1438">
|
||||
<rect width="33" height="33" fill="currentColor" transform="matrix(1 0 0 -1 0 33)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 3 KiB |
11
templates/ui/icons/community/icon-06.html
Normal file
|
@ -0,0 +1,11 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="33" height="33" viewBox="0 0 33 33" fill="none">
|
||||
<g clip-path="url(#clip0_707_1473)">
|
||||
<path d="M32.7138 24.0105L29.3313 22.3193L27.1785 16.7196C27.1532 16.6534 27.1145 16.5931 27.0648 16.5425C27.0151 16.492 26.9555 16.4522 26.8898 16.4257L13.5325 11.0864C13.4391 11.0492 13.3369 11.0401 13.2384 11.0603C13.14 11.0804 13.0495 11.1289 12.9782 11.1998L11.1968 12.9813C11.1268 13.0526 11.0791 13.1428 11.0594 13.2407C11.0397 13.3386 11.0489 13.4402 11.0859 13.533L16.4252 26.8903C16.4517 26.956 16.4915 27.0156 16.542 27.0653C16.5926 27.115 16.6529 27.1537 16.7191 27.179L22.3188 29.3318L24.01 32.7143C24.0456 32.7888 24.0987 32.8538 24.1646 32.9036C24.2306 32.9534 24.3075 32.9866 24.389 33.0004C24.4165 33.003 24.4441 33.003 24.4715 33.0004C24.608 32.9999 24.7388 32.9452 24.835 32.8483L32.8478 24.8355C32.9068 24.7786 32.9514 24.7085 32.9778 24.6309C33.0043 24.5533 33.0119 24.4706 33 24.3895C32.9861 24.308 32.9529 24.2311 32.9031 24.1651C32.8533 24.0991 32.7884 24.0461 32.7138 24.0105ZM12.1661 13.466L12.4523 13.1824L19.1013 19.8314C18.6631 20.4523 18.4738 21.215 18.571 21.9688C18.6681 22.7225 19.0445 23.4124 19.6257 23.9019C20.207 24.3915 20.9508 24.6451 21.7101 24.6127C22.4694 24.5802 23.1888 24.2641 23.7262 23.7267C24.2636 23.1893 24.5798 22.4699 24.6122 21.7106C24.6447 20.9513 24.391 20.2075 23.9015 19.6262C23.4119 19.045 22.722 18.6685 21.9683 18.5714C21.2146 18.4743 20.4518 18.6636 19.8309 19.1018L13.1819 12.4528L13.4655 12.1666L26.2968 17.2997L28.3207 22.5642L22.5637 28.3211L17.2992 26.2973L12.1661 13.466ZM21.5789 19.5761C22.0423 19.5768 22.4911 19.7382 22.8489 20.0327C23.2067 20.3272 23.4514 20.7366 23.5411 21.1912C23.6309 21.6459 23.5603 22.1176 23.3413 22.526C23.1223 22.9344 22.7685 23.2542 22.3401 23.431C21.9118 23.6078 21.4353 23.6306 20.9921 23.4956C20.5488 23.3605 20.166 23.0759 19.909 22.6903C19.652 22.3047 19.5366 21.8419 19.5825 21.3808C19.6285 20.9197 19.8329 20.4887 20.1609 20.1614C20.5373 19.7861 21.0473 19.5756 21.5789 19.5761ZM24.6133 31.6134L23.3243 29.0353L29.0296 23.3299L31.6078 24.6189L24.6133 31.6134Z" fill="currentColor"/>
|
||||
<path d="M9.86114 27.5861C9.76254 27.4929 9.63201 27.441 9.49634 27.441C9.36067 27.441 9.23013 27.4929 9.13153 27.5861L8.47669 28.241C6.72918 25.8692 5.76514 23.0114 5.71893 20.0657C5.67272 17.1201 6.54663 14.2334 8.21888 11.808C8.71988 12.0837 9.29674 12.1896 9.86299 12.1098C10.4292 12.0301 10.9544 11.769 11.3598 11.3656C11.7652 10.9623 12.0289 10.4384 12.1115 9.87259C12.1941 9.30675 12.0911 8.72937 11.8179 8.22698C14.2433 6.55474 17.13 5.68082 20.0757 5.72704C23.0213 5.77325 25.8792 6.73729 28.2509 8.4848L27.5858 9.13191C27.4899 9.22858 27.4361 9.35926 27.4362 9.49542C27.4358 9.56328 27.4488 9.63055 27.4745 9.69337C27.5002 9.7562 27.538 9.81334 27.5858 9.86152L29.8597 12.1174C29.9563 12.2134 30.087 12.2673 30.2232 12.2673C30.3594 12.2673 30.4901 12.2134 30.5867 12.1174L32.8477 9.85636C32.8956 9.80847 32.9337 9.7516 32.9596 9.68901C32.9856 9.62641 32.9989 9.55931 32.9989 9.49155C32.9989 9.42379 32.9856 9.3567 32.9596 9.2941C32.9337 9.2315 32.8956 9.17464 32.8477 9.12675L30.5867 6.86573C30.4901 6.7697 30.3594 6.71579 30.2232 6.71579C30.087 6.71579 29.9563 6.7697 29.8597 6.86573L28.9857 7.73456C26.8317 6.11369 24.2851 5.09533 21.6073 4.78406C18.9296 4.47279 16.2173 4.87984 13.749 5.96339L16.7215 2.99855C17.0586 3.1596 17.4418 3.19605 17.8032 3.10144C18.1645 3.00684 18.4807 2.78728 18.6956 2.48174C18.9105 2.17619 19.0102 1.8044 18.977 1.43232C18.9439 1.06025 18.78 0.711942 18.5145 0.449199C18.249 0.186456 17.8989 0.0262616 17.5265 -0.0029655C17.1541 -0.0321926 16.7834 0.0714373 16.4802 0.28954C16.1769 0.507642 15.9607 0.826117 15.8699 1.18846C15.7791 1.55081 15.8196 1.93361 15.9842 2.26894L10.9672 7.2937C10.4578 6.952 9.84553 6.79776 9.23504 6.85733C8.62455 6.9169 8.05368 7.18659 7.61995 7.62032C7.18621 8.05405 6.91653 8.62492 6.85696 9.23541C6.79739 9.8459 6.95163 10.4581 7.29333 10.9675L2.26857 15.9846C1.93192 15.8205 1.54802 15.7811 1.18508 15.8734C0.822148 15.9657 0.50368 16.1837 0.286271 16.4886C0.0688624 16.7935 -0.033406 17.1656 -0.00236147 17.5388C0.0286831 17.912 0.19103 18.2621 0.455831 18.5269C0.720631 18.7917 1.07074 18.9541 1.44393 18.9851C1.81713 19.0161 2.18924 18.9139 2.49416 18.6965C2.79907 18.4791 3.01703 18.1606 3.10931 17.7977C3.20159 17.4347 3.16221 17.0508 2.99817 16.7142L5.97075 13.7493C4.88612 16.217 4.47779 18.929 4.78769 21.6067C5.0976 24.2843 6.11457 26.8313 7.73419 28.986L6.86278 29.86C6.76675 29.9566 6.71284 30.0873 6.71284 30.2235C6.71284 30.3598 6.76675 30.4905 6.86278 30.5871L9.1238 32.8481C9.22005 32.9449 9.35078 32.9996 9.48732 33.0002C9.55536 33.0002 9.62273 32.9868 9.68556 32.9607C9.7484 32.9346 9.80544 32.8963 9.85341 32.8481L12.117 30.5871C12.213 30.4905 12.2669 30.3598 12.2669 30.2235C12.2669 30.0873 12.213 29.9566 12.117 29.86L9.86114 27.5861ZM30.2283 7.9537L31.7597 9.48511L30.2283 11.0165L28.6969 9.48511L30.2283 7.9537ZM17.0154 1.19386C17.0921 1.11661 17.1899 1.06387 17.2965 1.04232C17.4032 1.02077 17.5138 1.03138 17.6144 1.07281C17.715 1.11424 17.8011 1.18463 17.8616 1.27503C17.9221 1.36543 17.9545 1.47178 17.9545 1.58058C17.9545 1.68938 17.9221 1.79573 17.8616 1.88613C17.8011 1.97653 17.715 2.04691 17.6144 2.08834C17.5138 2.12978 17.4032 2.14039 17.2965 2.11884C17.1899 2.09729 17.0921 2.04454 17.0154 1.9673C16.9646 1.91654 16.9243 1.85625 16.8968 1.7899C16.8693 1.72354 16.8551 1.65241 16.8551 1.58058C16.8551 1.50875 16.8693 1.43762 16.8968 1.37126C16.9243 1.3049 16.9646 1.24462 17.0154 1.19386ZM8.35294 8.35331C8.50267 8.20287 8.68064 8.08349 8.87664 8.00203C9.07264 7.92057 9.2828 7.87863 9.49505 7.87863C9.7073 7.87863 9.91746 7.92057 10.1135 8.00203C10.3095 8.08349 10.4874 8.20287 10.6372 8.35331C10.8635 8.57928 11.0177 8.8673 11.0803 9.18094C11.1429 9.49458 11.111 9.81973 10.9887 10.1153C10.8665 10.4108 10.6593 10.6634 10.3934 10.8411C10.1275 11.0189 9.81487 11.1137 9.49505 11.1137C9.17523 11.1137 8.86259 11.0189 8.59671 10.8411C8.33082 10.6634 8.12364 10.4108 8.00136 10.1153C7.87909 9.81973 7.84723 9.49458 7.90982 9.18094C7.9724 8.8673 8.12661 8.57928 8.35294 8.35331ZM1.9695 17.7892C1.86424 17.877 1.72994 17.9223 1.59302 17.9161C1.45609 17.9099 1.32642 17.8527 1.2295 17.7558C1.13258 17.6589 1.07541 17.5292 1.06922 17.3923C1.06304 17.2554 1.10828 17.1211 1.19607 17.0158C1.29924 16.9144 1.43812 16.8576 1.58278 16.8576C1.72745 16.8576 1.86633 16.9144 1.9695 17.0158C2.02033 17.0666 2.06065 17.1269 2.08816 17.1932C2.11567 17.2596 2.12983 17.3307 2.12983 17.4025C2.12983 17.4744 2.11567 17.5455 2.08816 17.6118C2.06065 17.6782 2.02033 17.7385 1.9695 17.7892ZM9.49505 31.7446L7.96364 30.2132L9.49505 28.6818L11.0265 30.2132L9.49505 31.7446Z" fill="currentColor"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_707_1473">
|
||||
<rect width="33" height="33" fill="currentColor"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 6.7 KiB |
3
templates/ui/icons/social/card/icon01.html
Normal file
|
@ -0,0 +1,3 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="19" height="23" viewBox="0 0 19 23" fill="none">
|
||||
<path d="M9.81641 2.67926L16.8164 5.78926V10.4893C16.8164 15.0093 13.8364 19.1793 9.81641 20.4193C5.79641 19.1793 2.81641 15.0093 2.81641 10.4893V5.78926L9.81641 2.67926ZM9.81641 0.489258L0.816406 4.48926V10.4893C0.816406 16.0393 4.65641 21.2293 9.81641 22.4893C14.9764 21.2293 18.8164 16.0393 18.8164 10.4893V4.48926L9.81641 0.489258ZM8.81641 6.48926H10.8164V8.48926H8.81641V6.48926ZM8.81641 10.4893H10.8164V16.4893H8.81641V10.4893Z" fill="currentColor"/>
|
||||
</svg>
|
After Width: | Height: | Size: 561 B |
3
templates/ui/icons/social/card/icon02.html
Normal file
|
@ -0,0 +1,3 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="19" height="23" viewBox="0 0 19 23" fill="none">
|
||||
<path d="M9.81641 2.67926L16.8164 5.78926V10.4893C16.8164 15.0093 13.8364 19.1793 9.81641 20.4193C5.79641 19.1793 2.81641 15.0093 2.81641 10.4893V5.78926L9.81641 2.67926ZM9.81641 0.489258L0.816406 4.48926V10.4893C0.816406 16.0393 4.65641 21.2293 9.81641 22.4893C14.9764 21.2293 18.8164 16.0393 18.8164 10.4893V4.48926L9.81641 0.489258ZM8.81641 6.48926H10.8164V8.48926H8.81641V6.48926ZM8.81641 10.4893H10.8164V16.4893H8.81641V10.4893Z" fill="currentColor"/>
|
||||
</svg>
|
After Width: | Height: | Size: 561 B |
5
templates/ui/icons/social/card/icon03.html
Normal file
|
@ -0,0 +1,5 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25" viewBox="0 0 25 25" fill="none">
|
||||
<path d="M22.7653 9.78711H21.5653C21.234 9.78711 20.9653 10.0557 20.9653 10.3871V15.1871C20.9653 15.5185 21.234 15.7871 21.5653 15.7871H22.7653C23.0967 15.7871 23.3653 15.5185 23.3653 15.1871V10.3871C23.3653 10.0557 23.0967 9.78711 22.7653 9.78711Z" fill="currentColor"/>
|
||||
<path d="M5.36377 9.78711H8.96377V15.7871H5.36377V9.78711ZM9.56377 9.78711H13.1638V15.7871H9.56377V9.78711ZM13.7638 9.78711H17.3638V15.7871H13.7638V9.78711Z" fill="currentColor"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M17.3661 6.1875H5.36611C4.41133 6.1875 3.49566 6.56678 2.82053 7.24192C2.1454 7.91705 1.76611 8.83272 1.76611 9.7875V15.7875C1.76611 16.7423 2.1454 17.658 2.82053 18.3331C3.49566 19.0082 4.41133 19.3875 5.36611 19.3875H17.3661C18.3209 19.3875 19.2366 19.0082 19.9117 18.3331C20.5868 17.658 20.9661 16.7423 20.9661 15.7875V9.7875C20.9661 8.83272 20.5868 7.91705 19.9117 7.24192C19.2366 6.56678 18.3209 6.1875 17.3661 6.1875ZM4.16611 9.7875C4.16611 9.46924 4.29254 9.16402 4.51759 8.93897C4.74263 8.71393 5.04785 8.5875 5.36611 8.5875H17.3661C17.6844 8.5875 17.9896 8.71393 18.2146 8.93897C18.4397 9.16402 18.5661 9.46924 18.5661 9.7875V15.7875C18.5661 16.1058 18.4397 16.411 18.2146 16.636C17.9896 16.8611 17.6844 16.9875 17.3661 16.9875H5.36611C5.04785 16.9875 4.74263 16.8611 4.51759 16.636C4.29254 16.411 4.16611 16.1058 4.16611 15.7875V9.7875Z" fill="currentColor"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.4 KiB |
10
templates/ui/icons/social/card/icon04.html
Normal file
|
@ -0,0 +1,10 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25" viewBox="0 0 25 25" fill="none">
|
||||
<g clip-path="url(#clip0_0_3272)">
|
||||
<path d="M6.91455 3.96069C4.15355 3.96069 1.91455 6.17669 1.91455 8.91069C1.91455 11.1177 2.78955 16.3557 11.4026 21.6507C11.5568 21.7446 11.734 21.7942 11.9146 21.7942C12.0951 21.7942 12.2723 21.7446 12.4266 21.6507C21.0396 16.3557 21.9146 11.1177 21.9146 8.91069C21.9146 6.17669 19.6756 3.96069 16.9146 3.96069C14.1536 3.96069 11.9146 6.96069 11.9146 6.96069C11.9146 6.96069 9.67555 3.96069 6.91455 3.96069Z" fill="#66A686" fill-opacity="0.3" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_0_3272">
|
||||
<rect width="24" height="24" fill="currentColor" transform="translate(0.250488 0.960693)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 849 B |
5
templates/ui/icons/social/facebook.html
Normal file
|
@ -0,0 +1,5 @@
|
|||
<a href="https://facebook.com/" target="_blank">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="63" height="63" viewBox="0 0 63 63" fill="none">
|
||||
<path d="M25.8911 49.2935V32.2222H23.48C22.7476 32.2222 22.1543 31.6274 22.1543 30.8965V25.4912C22.1543 24.7632 22.7505 24.167 23.48 24.167H25.8911V19.8208C25.8911 15.7119 29.2236 12.3809 33.3325 12.3809H39.52C40.2524 12.3809 40.8457 12.9741 40.8457 13.7065V19.1104C40.8457 19.8428 40.2524 20.436 39.52 20.436H35.8579C35.4404 20.436 35.0962 20.7803 35.0962 21.1978V24.1699L39.4395 24.167C40.1719 24.2183 40.7651 24.7119 40.7651 25.4912C40.6362 27.3223 40.4575 29.1724 40.3022 31.0063C40.2451 31.6904 39.6694 32.2222 38.9824 32.2222H35.0962V49.2935C35.0962 50.0215 34.5015 50.6177 33.772 50.6177L27.2168 50.6191C26.4858 50.6191 25.8911 50.0244 25.8911 49.2935ZM27.6226 48.8906H33.3647V30.4907H38.6104L38.9985 25.894H33.3647V21.1978C33.3647 19.8208 34.481 18.7046 35.8579 18.7046H39.1143V14.1123H33.3325C30.1787 14.1123 27.6226 16.6685 27.6226 19.8208V25.897H23.8857V30.4907H27.6226V48.8906Z" fill="currentColor"/>
|
||||
</svg>
|
||||
</a>
|
13
templates/ui/icons/social/frame.html
Normal file
|
@ -0,0 +1,13 @@
|
|||
<a href="https://twitter.com/" target="_blank">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="41" height="43" viewBox="0 0 41 43" fill="none">
|
||||
<g clip-path="url(#clip0_21_4905)">
|
||||
<path d="M11.1305 33.5548C11.3037 34.8385 11.7221 35.8613 12.3481 36.6643C12.974 37.4672 13.7793 38.0142 14.6706 38.3896C16.4213 39.127 18.5813 39.2285 20.5415 39.2943C22.6036 39.3633 24.5438 39.1148 25.9633 38.8515C26.59 38.7352 27.1182 38.6155 27.5141 38.5176L27.6207 40.8113C27.5905 40.8242 27.5585 40.8378 27.5247 40.8519C27.2034 40.986 26.7184 41.1707 26.0794 41.3646C24.8014 41.7523 22.9072 42.177 20.4722 42.3091C17.7872 42.4534 14.4412 42.2438 10.5335 41.2319C6.46177 40.1776 4.07623 37.5462 2.66 34.0295C1.22952 30.4773 0.802447 26.0487 0.689318 21.4998L0.689307 21.4994C0.63874 19.5188 0.648245 17.6261 0.656868 15.909C0.65999 15.2875 0.662995 14.689 0.662995 14.1176C0.662995 9.61334 2.1664 6.74497 3.63331 5.00785C4.37089 4.13441 5.10627 3.53896 5.65212 3.16423C5.92489 2.97697 6.14968 2.84529 6.30269 2.762C6.37917 2.72037 6.43761 2.69089 6.47502 2.67266C6.49373 2.66354 6.50716 2.65724 6.51495 2.65365L6.52101 2.65088L11.0356 31.3072V32.131C11.0356 32.6267 11.0667 33.1038 11.1305 33.5548ZM11.1305 33.5548C11.1304 33.5541 11.1303 33.5533 11.1302 33.5526L11.7744 33.4658L11.1308 33.557C11.1307 33.5562 11.1306 33.5555 11.1305 33.5548ZM11.6856 32.131C11.6856 32.131 11.9163 32.1861 12.3365 32.2728C12.3359 32.2258 12.3356 32.1785 12.3356 32.131H11.6856ZM11.6856 32.131C11.8367 31.4988 11.8367 31.4988 11.8366 31.4988L11.8367 31.4988L11.6856 32.131ZM11.6856 32.131C11.5344 32.7631 11.5345 32.7632 11.5346 32.7632L11.5349 32.7632L11.5357 32.7634L11.5384 32.7641L11.548 32.7664L11.584 32.7747C11.6128 32.7814 11.6539 32.7908 11.7068 32.8026C11.6926 32.5846 11.6856 32.3605 11.6856 32.131ZM39.4897 25.6514L39.4896 25.6514L6.52279 2.65007L6.52677 2.6483C9.5417 1.29375 14.8245 0.695067 20.4377 0.65H20.5706C26.1839 0.695068 31.4702 1.29376 34.4849 2.64829L34.4849 2.64832L34.4889 2.65007L34.4893 2.65026L34.4895 2.65034L34.49 2.65056L34.4907 2.65085L34.4967 2.65364C34.5045 2.65724 34.5179 2.66354 34.5366 2.67265C34.574 2.69089 34.6325 2.72037 34.7089 2.76199C34.862 2.84528 35.0867 2.97696 35.3595 3.16422C35.9053 3.53895 36.6407 4.1344 37.3782 5.00784C38.8451 6.74496 40.3484 9.61333 40.3484 14.1176L40.3485 14.125L40.3485 14.1251L40.3485 14.1259L40.3485 14.1292L40.3487 14.1434L40.3491 14.2004C40.3494 14.2509 40.3498 14.326 40.3499 14.4236C40.3502 14.6188 40.3496 14.9037 40.3459 15.2608C40.3384 15.9753 40.3187 16.9777 40.2695 18.1282C40.1708 20.4369 39.9546 23.3121 39.4897 25.6514ZM0.0395186 21.516C-0.011324 19.5246 -0.00174056 17.6167 0.0068974 15.8971C0.0100077 15.2779 0.0129954 14.6831 0.0129954 14.1176C0.0129954 4.78957 6.26039 2.05539 6.26039 2.05539L0.0395186 21.516ZM34.7513 2.05539C34.7513 2.05539 40.9984 4.78957 40.9984 14.1176C40.9984 14.1176 41.0768 20.9998 40.1272 25.7781L34.7513 2.05539ZM28.1259 37.6797L28.157 38.3479L27.4834 37.8553C27.8945 37.7511 28.1259 37.6797 28.1259 37.6797Z" fill="white" stroke="currentColor" stroke-width="1.3"/>
|
||||
<path d="M20.9719 11.3064L22.2117 9.234C23.3794 7.45142 25.1312 6.55 27.5219 6.55C29.5864 6.55 31.2142 7.26584 32.4627 8.65194C33.6697 10.0376 34.2999 11.939 34.2999 14.4153V26.45H30.4006V14.7852C30.4006 13.4335 30.1174 12.3136 29.4575 11.5256C28.7822 10.7192 27.792 10.3535 26.5914 10.3535C25.2628 10.3535 24.1826 10.7891 23.4536 11.7235C22.7447 12.6322 22.4349 13.9294 22.4349 15.5194V21.6552H18.5651V15.5194C18.5651 13.9294 18.2553 12.6322 17.5463 11.7235C16.8173 10.7891 15.7369 10.3535 14.4084 10.3535C13.2078 10.3535 12.2176 10.7192 11.5423 11.5256C10.8824 12.3136 10.5992 13.4335 10.5992 14.7852V26.45H6.6999V14.4153C6.6999 11.939 7.33013 10.0377 8.53726 8.65201C9.78553 7.26589 11.4134 6.55 13.4781 6.55C15.8686 6.55 17.6204 7.45139 18.7883 9.234L20.0279 11.3063L20.4999 12.0954L20.9719 11.3064Z" fill="white" stroke="currentColor" stroke-width="1.1"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_21_4905">
|
||||
<rect width="41" height="43" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
</a>
|
12
templates/ui/icons/social/git.html
Normal file
|
@ -0,0 +1,12 @@
|
|||
<a href="https://github.com/" target="_blank">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="37" height="37" viewBox="0 0 37 37" fill="none">
|
||||
<g clip-path="url(#clip0_825_17594)">
|
||||
<path d="M28.3685 37.0001H14.1983V33.0638H11.9646C9.67241 33.0546 7.62235 31.6344 6.80821 29.4918L5.98168 27.2777C5.86665 26.9698 5.5723 26.7657 5.24365 26.766H4.75153C4.05559 26.7669 3.39482 26.4613 2.94537 25.93C2.49592 25.3989 2.30334 24.6966 2.41924 24.0108C2.60634 22.8888 3.63958 22.0426 4.83023 22.0426H6.60151C8.17617 22.0406 9.60062 22.9773 10.2228 24.4239L11.1577 26.5988C11.4056 27.1774 11.9744 27.5528 12.6041 27.5533H14.1983C14.3361 25.6244 14.9756 24.0993 16.0679 23.0266L16.2844 22.8198C11.2854 21.1668 7.90056 17.1125 7.90056 12.5958C7.91065 10.7479 8.45783 8.94285 9.47493 7.3999V4.12316C9.47464 2.84285 9.77101 1.57955 10.341 0.433005L10.5673 -1.17365e-05H11.9251C13.5972 -0.00664249 15.2025 0.655856 16.383 1.84016L16.7569 2.21408C19.7197 1.35295 22.8667 1.35295 25.8298 2.21408L26.2037 1.84016C27.3817 0.65845 28.9829 -0.00404784 30.6515 -1.17365e-05H32.0094L32.2259 0.433005C32.7958 1.57955 33.0922 2.84285 33.0919 4.12316V7.3999C34.109 8.94285 34.6562 10.7479 34.6663 12.5958C34.6663 17.1125 31.2811 21.1668 26.2824 22.8198L26.4692 23.007C27.6798 24.1947 28.3639 25.8178 28.3685 27.5138V37.0001ZM15.7727 35.4255H26.7941V27.5138C26.7887 26.2433 26.2749 25.0276 25.3671 24.1385L23.1827 22.0031L24.5801 21.6785C29.5886 20.4976 33.0919 16.768 33.0919 12.5958C33.081 10.9796 32.5799 9.40469 31.6551 8.07912L31.5175 7.88222V4.12316C31.5178 3.24905 31.3472 2.38331 31.0156 1.57465H30.6515C29.3989 1.57349 28.1978 2.07282 27.3157 2.96191L26.2527 4.01505L25.7903 3.85735C22.8604 2.90973 19.7065 2.90973 16.7765 3.85735L16.3141 4.01505L15.2512 2.96191C14.369 2.07282 13.168 1.57349 11.9153 1.57465H11.5512C11.2197 2.38331 11.049 3.24905 11.0493 4.12316V7.88222L10.9115 8.07912C9.98694 9.40469 9.48588 10.9796 9.47493 12.5958C9.47493 16.768 12.978 20.4976 17.9868 21.6687L19.3841 21.9933L17.1701 24.1584C16.3533 24.9552 15.8811 26.1361 15.7629 27.6811C15.6966 28.4966 15.0165 29.1251 14.1983 29.1277H12.6041C11.3448 29.1271 10.2069 28.3761 9.71104 27.2186L8.7862 25.044C8.41199 24.176 7.55634 23.6147 6.61131 23.617H4.84004C4.41682 23.617 4.0429 23.9024 3.98409 24.2665C3.94344 24.4945 4.00543 24.7289 4.15332 24.9071C4.30122 25.0853 4.52003 25.1893 4.75153 25.1916H5.23356C6.21894 25.1937 7.10026 25.8046 7.44765 26.7265L8.27447 28.9308C8.85423 30.4668 10.3228 31.4848 11.9646 31.4894H14.1983C15.0678 31.4894 15.7727 32.1943 15.7727 33.0638V35.4255Z" fill="currentColor"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_825_17594">
|
||||
<rect width="37" height="37" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
</a>
|
7
templates/ui/icons/social/instagram.html
Normal file
|
@ -0,0 +1,7 @@
|
|||
<a href="https://www.instagram.com/" target="_blank">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="59" height="59" viewBox="0 0 59 59" fill="none">
|
||||
<path d="M36.4868 13.9737H22.5131C20.2483 13.9737 18.0762 14.8734 16.4748 16.4748C14.8733 18.0763 13.9736 20.2484 13.9736 22.5132V36.4869C13.9736 38.7517 14.8733 40.9237 16.4748 42.5252C18.0762 44.1266 20.2483 45.0263 22.5131 45.0263H36.4868C38.7516 45.0263 40.9237 44.1266 42.5251 42.5252C44.1266 40.9237 45.0263 38.7517 45.0263 36.4869V22.5132C45.0263 20.2484 44.1266 18.0763 42.5251 16.4748C40.9237 14.8734 38.7516 13.9737 36.4868 13.9737ZM42.3092 35.2603C42.3092 37.1298 41.5665 38.9227 40.2446 40.2446C38.9226 41.5666 37.1297 42.3092 35.2602 42.3092H23.7397C21.8702 42.3092 20.0773 41.5666 18.7553 40.2446C17.4334 38.9227 16.6907 37.1298 16.6907 35.2603V23.7397C16.6907 21.8702 17.4334 20.0773 18.7553 18.7554C20.0773 17.4335 21.8702 16.6908 23.7397 16.6908H35.2602C37.1297 16.6908 38.9226 17.4335 40.2446 18.7554C41.5665 20.0773 42.3092 21.8702 42.3092 23.7397V35.2603Z" fill="currentColor"/>
|
||||
<path d="M35.1632 23.895L35.0895 23.8213L35.0274 23.7592C33.5597 22.2966 31.5719 21.4758 29.5 21.4768C28.4537 21.4839 27.419 21.6971 26.4551 22.1042C25.4912 22.5113 24.617 23.1044 23.8824 23.8494C23.1477 24.5945 22.5671 25.4771 22.1737 26.4466C21.7802 27.4161 21.5817 28.4537 21.5893 29.5C21.5877 31.6235 22.4248 33.6616 23.9183 35.171C24.6498 35.9115 25.5216 36.4988 26.4826 36.8986C27.4436 37.2985 28.4746 37.5029 29.5155 37.5C31.0768 37.4672 32.5949 36.9809 33.8845 36.1002C35.1742 35.2195 36.1797 33.9826 36.7784 32.5402C37.3772 31.0979 37.5433 29.5125 37.2564 27.9774C36.9696 26.4423 36.2423 25.0239 35.1632 23.895ZM29.5 34.7635C28.456 34.7781 27.4312 34.4819 26.556 33.9125C25.6808 33.3431 24.9947 32.5263 24.585 31.5659C24.1752 30.6055 24.0604 29.545 24.2551 28.5191C24.4498 27.4933 24.9452 26.5486 25.6783 25.8051C26.4113 25.0616 27.349 24.5529 28.372 24.3438C29.3949 24.1347 30.457 24.2345 31.4231 24.6306C32.3891 25.0267 33.2156 25.7012 33.7972 26.5683C34.3789 27.4354 34.6896 28.4559 34.6897 29.5C34.6948 30.1865 34.5646 30.8672 34.3065 31.5033C34.0484 32.1394 33.6675 32.7183 33.1855 33.2072C32.7036 33.696 32.13 34.085 31.4976 34.352C30.8652 34.6191 30.1864 34.7589 29.5 34.7635Z" fill="currentColor"/>
|
||||
<path d="M39.7591 21.108C39.7611 21.3571 39.714 21.6041 39.6205 21.835C39.5269 22.0658 39.3888 22.276 39.2139 22.4534C39.039 22.6308 38.8309 22.7719 38.6014 22.8688C38.3719 22.9656 38.1256 23.0162 37.8765 23.0178C37.6295 23.0177 37.385 22.9685 37.1571 22.8733C36.9293 22.778 36.7226 22.6384 36.549 22.4627C36.286 22.1959 36.1072 21.8578 36.0346 21.4903C35.962 21.1228 35.9988 20.742 36.1406 20.3953C36.2824 20.0485 36.5228 19.751 36.832 19.5396C37.1413 19.3282 37.5058 19.2122 37.8804 19.2061C38.3188 19.206 38.7433 19.3598 39.0798 19.6408L39.1186 19.6796C39.1812 19.7306 39.2384 19.7878 39.2894 19.8504L39.3321 19.897C39.6099 20.2393 39.7608 20.6672 39.7591 21.108Z" fill="currentColor"/>
|
||||
</svg>
|
||||
</a>
|
14
templates/ui/icons/social/linkidin.html
Normal file
|
@ -0,0 +1,14 @@
|
|||
<a href="https://www.linkedin.com/" target="_blank">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="41" height="41" viewBox="0 0 41 41" fill="none">
|
||||
<g clip-path="url(#clip0_21_4863)">
|
||||
<path d="M5.535 0.341675C4.03169 0.341675 2.665 0.888368 1.64 1.91337C0.546693 3.00667 0 4.37329 0 5.80829C0 7.31159 0.615 8.67829 1.64 9.70329C2.665 10.7283 4.1 11.3433 5.46669 11.275C5.46669 11.275 5.535 11.275 5.60339 11.275C6.97008 11.275 8.26839 10.7283 9.29339 9.70329C10.3184 8.67829 10.9334 7.31159 10.9334 5.80829C11.0017 4.37329 10.3867 3.00659 9.36169 1.98159C8.33669 0.888288 6.97 0.341675 5.535 0.341675ZM8.33669 8.74667C7.585 9.49837 6.56 9.97668 5.46669 9.90837C4.44169 9.90837 3.34839 9.49837 2.59669 8.74667C1.77669 7.99498 1.36669 6.90167 1.36669 5.80837C1.36669 4.71506 1.77669 3.69006 2.59669 2.87006C3.34839 2.11837 4.37339 1.70837 5.535 1.70837C6.56 1.70837 7.585 2.11837 8.33669 2.87006C9.15669 3.69006 9.56669 4.71506 9.56669 5.80837C9.56669 6.90167 9.15669 7.99498 8.33669 8.74667Z" fill="currentColor"/>
|
||||
<path d="M8.20004 12.6417H2.66504C1.57174 12.6417 0.68335 13.53 0.68335 14.6917V38.6084C0.68335 39.7017 1.64004 40.6584 2.73335 40.6584H8.20004C9.29335 40.6584 10.25 39.7017 10.25 38.6767V14.6917C10.25 13.5983 9.29335 12.6417 8.20004 12.6417ZM8.88335 38.6767C8.88335 39.0184 8.54166 39.2917 8.20004 39.2917H2.73335C2.39166 39.2917 2.05004 38.95 2.05004 38.6084V14.6917C2.05004 14.35 2.32335 14.0084 2.66504 14.0084H8.20004C8.54174 14.0084 8.88335 14.35 8.88335 14.6917V38.6767Z" fill="currentColor"/>
|
||||
<path d="M31.4334 11.9583H29.9984C27.3334 11.9583 24.8051 13.12 23.1651 14.965V14.0083C23.1651 13.325 22.4818 12.6416 21.7984 12.6416H14.9651C14.3501 12.6416 13.5984 13.1883 13.5984 13.9399V39.4282C13.5984 40.1799 14.3501 40.6582 14.9651 40.6582H22.4818C23.0968 40.6582 23.8485 40.1799 23.8485 39.4282V24.6682C23.8485 22.4132 25.4885 20.6365 27.6068 20.6365C28.7001 20.6365 29.7251 21.0465 30.4768 21.7982C31.1601 22.4132 31.4335 23.3699 31.4335 24.5999V39.2916C31.4335 39.9749 32.1168 40.6583 32.8002 40.6583H39.6335C40.3168 40.6583 41.0002 39.975 41.0002 39.2916V21.6616C41.0001 16.195 36.8318 11.9583 31.4334 11.9583ZM39.6334 39.2233L39.5651 39.2916H32.8684L32.8001 24.6C32.8001 22.96 32.3901 21.73 31.5018 20.8417C30.4768 19.8167 29.1101 19.27 27.6751 19.27C24.8051 19.3383 22.5501 21.6617 22.5501 24.6683V39.2916H15.0334V14.0083H21.7984L21.8667 14.0766V18.3816L23.7117 16.5366L23.78 16.4683C25.1467 14.555 27.5383 13.325 30.0667 13.325H31.5017C36.08 13.325 39.6334 17.015 39.6334 21.6617V39.2233Z" fill="currentColor"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_21_4863">
|
||||
<rect width="41" height="41" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
</a>
|
12
templates/ui/icons/social/mail.html
Normal file
|
@ -0,0 +1,12 @@
|
|||
<a href="mailto:" target="_blank">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="43" height="43" viewBox="0 0 43 43" fill="none">
|
||||
<g clip-path="url(#clip0_21_4876)">
|
||||
<path d="M40.7948 7.16663H2.20518C0.992275 7.16663 0 8.1589 0 9.37172V33.6282C0 34.8409 0.992275 35.8333 2.20518 35.8333H40.7949C42.0076 35.8333 43.0001 34.8411 43.0001 33.6282V9.37172C43 8.1589 42.0077 7.16663 40.7948 7.16663ZM39.9673 8.82036L22.7685 21.7205C22.4593 21.9559 21.9846 22.1031 21.4999 22.1009C21.0153 22.1031 20.5407 21.9559 20.2314 21.7205L3.03259 8.82036H39.9673ZM30.7803 22.5717L40.1521 34.1487C40.1615 34.1603 40.173 34.1691 40.183 34.1796H2.817C2.82691 34.1686 2.8385 34.1603 2.84791 34.1487L12.2197 22.5717C12.5069 22.2167 12.4524 21.6963 12.0968 21.4084C11.7418 21.1213 11.2213 21.1757 10.9341 21.5308L1.65382 32.9948V9.85404L19.2396 23.0435C19.9007 23.5358 20.7049 23.7524 21.4998 23.7546C22.2937 23.753 23.0986 23.5363 23.76 23.0435L41.3458 9.85404V32.9946L32.0658 21.5308C31.7786 21.1758 31.2576 21.1212 30.9031 21.4084C30.5476 21.6956 30.493 22.2167 30.7803 22.5717Z" fill="currentColor"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_21_4876">
|
||||
<rect width="43" height="43" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
</a>
|
12
templates/ui/icons/social/matrix.html
Normal file
|
@ -0,0 +1,12 @@
|
|||
<a href="mailto:" target="_blank">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="43" height="43" viewBox="0 0 43 43" fill="none">
|
||||
<g clip-path="url(#clip0_21_4876)">
|
||||
<path d="M40.7948 7.16663H2.20518C0.992275 7.16663 0 8.1589 0 9.37172V33.6282C0 34.8409 0.992275 35.8333 2.20518 35.8333H40.7949C42.0076 35.8333 43.0001 34.8411 43.0001 33.6282V9.37172C43 8.1589 42.0077 7.16663 40.7948 7.16663ZM39.9673 8.82036L22.7685 21.7205C22.4593 21.9559 21.9846 22.1031 21.4999 22.1009C21.0153 22.1031 20.5407 21.9559 20.2314 21.7205L3.03259 8.82036H39.9673ZM30.7803 22.5717L40.1521 34.1487C40.1615 34.1603 40.173 34.1691 40.183 34.1796H2.817C2.82691 34.1686 2.8385 34.1603 2.84791 34.1487L12.2197 22.5717C12.5069 22.2167 12.4524 21.6963 12.0968 21.4084C11.7418 21.1213 11.2213 21.1757 10.9341 21.5308L1.65382 32.9948V9.85404L19.2396 23.0435C19.9007 23.5358 20.7049 23.7524 21.4998 23.7546C22.2937 23.753 23.0986 23.5363 23.76 23.0435L41.3458 9.85404V32.9946L32.0658 21.5308C31.7786 21.1758 31.2576 21.1212 30.9031 21.4084C30.5476 21.6956 30.493 22.2167 30.7803 22.5717Z" fill="currentColor"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_21_4876">
|
||||
<rect width="43" height="43" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
</a>
|
19
templates/ui/icons/social/reddid.html
Normal file
|
@ -0,0 +1,19 @@
|
|||
<a href="https://www.reddit.com/" target="_blank">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="39" height="39" viewBox="0 0 39 39" fill="none">
|
||||
<g clip-path="url(#clip0_825_17573)">
|
||||
<path d="M19.4845 37.6984C9.22739 37.6984 0.875244 31.7392 0.875244 24.4061C0.875244 17.0732 9.22739 11.1138 19.4845 11.1138C29.7418 11.1138 38.0937 17.0732 38.0937 24.4061C38.0937 31.7392 29.7418 37.6984 19.4845 37.6984ZM19.4845 12.8863C10.2019 12.8863 2.64744 18.0591 2.64744 24.4061C2.64744 30.7533 10.2019 35.9262 19.4845 35.9262C28.767 35.9262 36.3215 30.7533 36.3215 24.4061C36.3215 18.0591 28.767 12.8863 19.4845 12.8863Z" fill="currentColor"/>
|
||||
<path d="M1.98276 21.4708C0.397812 20.1951 -0.320023 18.1266 0.133979 16.1432C0.587656 14.1597 2.13366 12.6092 4.1155 12.1496C6.09766 11.6898 8.16842 12.4015 9.44864 13.9829L8.06424 15.0904C7.20979 14.037 5.82896 13.5636 4.50784 13.8709C3.18673 14.1785 2.15703 15.2128 1.85523 16.5352C1.55375 17.8579 2.03339 19.2365 3.09067 20.0861L1.98276 21.4708Z" fill="currentColor"/>
|
||||
<path d="M36.9861 21.4597L35.8782 20.0861C36.9355 19.2365 37.4151 17.8579 37.1136 16.5352C36.8122 15.2128 35.7821 14.1785 34.461 13.8709C33.1399 13.5636 31.7594 14.037 30.9049 15.0904L29.5312 13.9718C30.8076 12.3761 32.8855 11.6531 34.8767 12.112C36.8676 12.5705 38.4198 14.1295 38.8696 16.1227C39.3194 18.1159 38.5873 20.1906 36.9861 21.4597Z" fill="currentColor"/>
|
||||
<path d="M12.3953 25.2924C10.4375 25.2924 8.85059 23.7055 8.85059 21.7476C8.85059 19.7901 10.4375 18.2032 12.3953 18.2032C14.3528 18.2032 15.9397 19.7901 15.9397 21.7476C15.9397 23.7055 14.3528 25.2924 12.3953 25.2924ZM12.3953 19.9754C11.4166 19.9754 10.6228 20.7689 10.6228 21.7476C10.6228 22.7267 11.4166 23.5202 12.3953 23.5202C13.3741 23.5202 14.1675 22.7267 14.1675 21.7476C14.1675 20.7689 13.3741 19.9754 12.3953 19.9754Z" fill="currentColor"/>
|
||||
<path d="M26.5736 25.2924C24.6161 25.2924 23.0292 23.7055 23.0292 21.7476C23.0292 19.7901 24.6161 18.2032 26.5736 18.2032C28.5314 18.2032 30.1183 19.7901 30.1183 21.7476C30.1183 23.7055 28.5314 25.2924 26.5736 25.2924ZM26.5736 19.9754C25.5948 19.9754 24.8014 20.7689 24.8014 21.7476C24.8014 22.7267 25.5948 23.5202 26.5736 23.5202C27.5526 23.5202 28.3461 22.7267 28.3461 21.7476C28.3461 20.7689 27.5526 19.9754 26.5736 19.9754Z" fill="currentColor"/>
|
||||
<path d="M31.8905 8.45532C29.933 8.45532 28.3461 6.86843 28.3461 4.91093C28.3461 2.95311 29.933 1.36621 31.8905 1.36621C33.8483 1.36621 35.4352 2.95311 35.4352 4.91093C35.4352 6.86843 33.8483 8.45532 31.8905 8.45532ZM31.8905 3.13841C30.9117 3.13841 30.1183 3.93186 30.1183 4.91093C30.1183 5.88968 30.9117 6.68313 31.8905 6.68313C32.8695 6.68313 33.663 5.88968 33.663 4.91093C33.663 3.93186 32.8695 3.13841 31.8905 3.13841Z" fill="currentColor"/>
|
||||
<path d="M20.3707 12H18.5981V7.56939C18.5988 5.91305 19.3711 4.35179 20.6874 3.3461C22.0033 2.34075 23.7129 2.00584 25.3108 2.4407L29.5091 3.58171L29.0438 5.28738L24.8458 4.14637C23.7797 3.85657 22.6394 4.08017 21.7619 4.75127C20.8844 5.42238 20.3697 6.46441 20.3707 7.56939V12Z" fill="currentColor"/>
|
||||
<path d="M19.4844 33.2677C16.2389 33.2677 13.2151 32.005 11.1768 29.8116L12.4729 28.6044C14.1786 30.4431 16.7374 31.4955 19.4844 31.4955C22.2315 31.4955 24.7903 30.4431 26.4963 28.6044L27.7921 29.8116C25.7541 32.005 22.73 33.2677 19.4844 33.2677Z" fill="currentColor"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_825_17573">
|
||||
<rect width="39" height="39" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
</a>
|
12
templates/ui/icons/social/telegram.html
Normal file
|
@ -0,0 +1,12 @@
|
|||
<a href="http://t.me" target="_blank">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="41" height="41" viewBox="0 0 41 41" fill="none">
|
||||
<mask id="mask0_21_4892" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="0" width="41" height="41">
|
||||
<path d="M0 3.8147e-06H41V41H0V3.8147e-06Z" fill="white"/>
|
||||
</mask>
|
||||
<g mask="url(#mask0_21_4892)">
|
||||
<path d="M37.2074 4.57194L2.50278 17.8198C0.742423 18.4918 0.771411 19.5087 2.56692 20.0799L10.3637 22.3108L14.462 34.0306C15.0839 35.8092 16.7268 36.22 18.1128 34.944L23.327 30.1431L30.6543 36.0434C32.1433 37.1981 33.6673 36.6319 34.0412 34.7854L39.7276 6.70762C40.1015 4.86118 38.9676 3.90024 37.2074 4.57194Z" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M10.4685 22.257L31.3536 11.5871L17.9586 25.8202L15.5888 35.4184" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M18.0217 25.8715L30.5907 35.9924" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</g>
|
||||
</svg>
|
||||
</a>
|
5
templates/ui/icons/social/twitter.html
Normal file
|
@ -0,0 +1,5 @@
|
|||
<a href="https://twitter.com/" target="_blank">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="59" height="59" viewBox="0 0 59 59" fill="none">
|
||||
<path d="M32.7273 26.8303L45.3559 12.1506H42.3634L31.3979 24.8968L22.6399 12.1506H12.5386L25.7824 31.4251L12.5386 46.8191H15.5313L27.1111 33.3587L36.3602 46.8191H46.4616L32.7266 26.8303H32.7273ZM16.6096 14.4036H21.2063L42.3647 44.6686H37.7681L16.6096 14.4036Z" fill="currentColor"/>
|
||||
</svg>
|
||||
</a>
|