Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gurusabarish/hugo-profile.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/partials')
-rw-r--r--layouts/partials/head.html57
-rw-r--r--layouts/partials/scripts.html64
-rw-r--r--layouts/partials/sections/about.html28
-rw-r--r--layouts/partials/sections/achievements.html36
-rw-r--r--layouts/partials/sections/contact.html23
-rw-r--r--layouts/partials/sections/education.html64
-rw-r--r--layouts/partials/sections/experience.html132
-rw-r--r--layouts/partials/sections/footer/copyright.html24
-rw-r--r--layouts/partials/sections/footer/index.html10
-rw-r--r--layouts/partials/sections/footer/recentBlogPosts.html25
-rw-r--r--layouts/partials/sections/footer/socialNetwork.html95
-rw-r--r--layouts/partials/sections/header.html171
-rw-r--r--layouts/partials/sections/hero/index.html306
-rw-r--r--layouts/partials/sections/hero/social.html17
-rw-r--r--layouts/partials/sections/projects.html83
-rw-r--r--layouts/partials/sections/v1/about.html70
-rw-r--r--layouts/partials/sections/v1/blog.html23
-rw-r--r--layouts/partials/sections/v1/contact.html31
-rw-r--r--layouts/partials/sections/v1/do_things.html45
-rw-r--r--layouts/partials/sections/v1/footer.html12
-rw-r--r--layouts/partials/sections/v1/head.html11
-rw-r--r--layouts/partials/sections/v1/header.html34
-rw-r--r--layouts/partials/sections/v1/header1.html39
-rw-r--r--layouts/partials/sections/v1/home.html123
-rw-r--r--layouts/partials/sections/v1/projects.html46
-rw-r--r--layouts/partials/sections/v1/scripts.html3
-rw-r--r--layouts/partials/sections/v2/about.html133
-rw-r--r--layouts/partials/sections/v2/do_things.html45
-rw-r--r--layouts/partials/sections/v2/footer.html144
-rw-r--r--layouts/partials/sections/v2/head.html16
-rw-r--r--layouts/partials/sections/v2/header.html26
-rw-r--r--layouts/partials/sections/v2/scripts.html3
-rw-r--r--layouts/partials/sections/v3/about.html43
-rw-r--r--layouts/partials/sections/v3/achievements.html37
-rw-r--r--layouts/partials/sections/v3/contact.html17
-rw-r--r--layouts/partials/sections/v3/education.html275
-rw-r--r--layouts/partials/sections/v3/experience.html138
-rw-r--r--layouts/partials/sections/v3/footer.html142
-rw-r--r--layouts/partials/sections/v3/head.html36
-rw-r--r--layouts/partials/sections/v3/home.html99
-rw-r--r--layouts/partials/sections/v3/navbar.html120
-rw-r--r--layouts/partials/sections/v3/projects.html106
-rw-r--r--layouts/partials/sections/v3/scripts.html3
43 files changed, 1135 insertions, 1820 deletions
diff --git a/layouts/partials/head.html b/layouts/partials/head.html
new file mode 100644
index 0000000..305552a
--- /dev/null
+++ b/layouts/partials/head.html
@@ -0,0 +1,57 @@
+<meta charset="UTF-8">
+<meta name="viewport" content="width=device-width, initial-scale=1.0">
+<meta http-equiv="X-UA-Compatible" content="ie=edge">
+<link rel="icon" href={{ .Site.Params.favicon | default "/fav.png" }} type="image/gif">
+
+<!-- Fonts -->
+<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=Alata&family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap"
+ rel="stylesheet">
+
+<!-- font configuration -->
+<link rel="stylesheet" href="/css/font.css" media="all">
+
+<!-- Internal templates -->
+{{ template "_internal/google_analytics_async.html" . }}
+{{ template "_internal/opengraph.html" . }}
+{{ template "_internal/twitter_cards.html" . }}
+
+<!-- stylesheets -->
+<link rel="stylesheet" href="/bootstrap-5/css/bootstrap.min.css" media="all">
+<link rel="stylesheet" href="/css/header.css" media="all">
+<link rel="stylesheet" href="/css/footer.css" media="all">
+
+<!-- theme -->
+<link rel="stylesheet" href="/css/theme.css" media="all">
+
+<!-- Custom Styles -->
+{{ if .Site.Params.customCSS }}
+<link rel="stylesheet" href="/style.css">
+{{ end }}
+
+<style>
+ :root {
+ --text-color: {{ .Site.Params.color.textColor | default "#343a40" }};
+ --text-secondary-color: {{ .Site.Params.color.secondaryTextColor | default "#6c757d" }};
+ --background-color: {{ .Site.Params.color.backgroundColor | default "#eaedf0" }};
+ --secondary-background-color: {{ .Site.Params.color.secondaryBackgroundColor | default "#64ffda1a" }};
+ --primary-color: {{ .Site.Params.color.primaryColor | default "#007bff" }};
+ --secondary-color: {{ .Site.Params.color.secondaryColor | default "#f8f9fa" }};
+
+ /* dark mode colors */
+ --text-color-dark: {{ .Site.Params.color.darkmode.textColor | default "#e4e6eb" }};
+ --text-secondary-color-dark: {{ .Site.Params.color.darkmode.secondaryTextColor | default "#b0b3b8" }};
+ --background-color-dark: {{ .Site.Params.color.darkmode.backgroundColor | default "#18191a" }};
+ --secondary-background-color-dark: {{ .Site.Params.color.darkmode.secondaryBackgroundColor | default "#212529" }};
+ --primary-color-dark: {{ .Site.Params.color.darkmode.primaryColor | default "#ffffff" }};
+ --secondary-color-dark: {{ .Site.Params.color.darkmode.secondaryColor | default "#212529" }};
+ }
+ body {
+ font-size: {{ .Site.Params.font.fontSize | default "1rem" }};
+ font-weight: {{ .Site.Params.font.fontWeight | default "400" }};
+ line-height: {{ .Site.Params.font.lineHeight | default "1.5" }};
+ text-align: {{ .Site.Params.font.textAlign | default "left" }};
+ }
+</style> \ No newline at end of file
diff --git a/layouts/partials/scripts.html b/layouts/partials/scripts.html
new file mode 100644
index 0000000..336bc35
--- /dev/null
+++ b/layouts/partials/scripts.html
@@ -0,0 +1,64 @@
+{{- if (eq .Site.Params.theme.defaultTheme "light") }}
+<script>
+ if (document.body.className.includes("dark")) {
+ document.body.classList.remove('dark');
+ localStorage.setItem("pref-theme", 'light');
+ }
+</script>
+
+{{ else if (eq .Site.Params.theme.defaultTheme "dark") }}
+{{- /* theme is dark */}}
+<script>
+ if (document.body.className.includes("light")) {
+ document.body.classList.add('dark');
+ localStorage.setItem("pref-theme", 'dark');
+ }
+</script>
+
+{{- else }}
+{{- /* theme is auto */}}
+<script>
+ if (localStorage.getItem("pref-theme") === "dark") {
+ document.body.classList.add('dark');
+ } else if (localStorage.getItem("pref-theme") === "light") {
+ document.body.classList.remove('dark')
+ } else if (window.matchMedia('(prefers-color-scheme: dark)').matches) {
+ document.body.classList.add('dark');
+ }
+
+</script>
+{{- end }}
+
+{{- if (not .Site.Params.theme.disableThemeToggle) }}
+<script>
+ document.getElementById("theme-toggle").addEventListener("click", () => {
+ if (document.body.className.includes("dark")) {
+ document.body.classList.remove('dark');
+ localStorage.setItem("pref-theme", 'light');
+ } else {
+ document.body.classList.add('dark');
+ localStorage.setItem("pref-theme", 'dark');
+ }
+ })
+
+ var tooltipTriggerList = [].slice.call(document.querySelectorAll('[data-bs-toggle="tooltip"]'))
+ var tooltipList = tooltipTriggerList.map(function (tooltipTriggerEl) {
+ return new bootstrap.Tooltip(tooltipTriggerEl)
+ })
+
+</script>
+{{- end }}
+
+<script>
+ let loadingIcons;
+
+ function loading() {
+ myVar = setTimeout(showPage, 100);
+ }
+
+ function showPage() {
+ try{
+ document.getElementById("loading-icons").style.display = "block";
+ } catch(err) {}
+ }
+</script> \ No newline at end of file
diff --git a/layouts/partials/sections/about.html b/layouts/partials/sections/about.html
new file mode 100644
index 0000000..58df551
--- /dev/null
+++ b/layouts/partials/sections/about.html
@@ -0,0 +1,28 @@
+{{ if .Site.Params.about.enable | default false }}
+<section id="about" class="py-0 py-sm-5">
+ <div class="container bg-transparent">
+ <h3 class="text-center bg-transparent">{{ .Site.Params.about.title }}</h3>
+ <div class="bg-transparent row justify-content-center px-3 py-5">
+ {{ if .Site.Params.about.image }}
+ <div class="col-sm-12 col-md-8 col-lg-4 mb-5 mb-sm-0 mb-md-5 mb-lg-0 d-none d-sm-none d-md-block">
+ <div class="image d-flex px-5">
+ <img src="{{ .Site.Params.about.image }}" class="img-thumbnail mx-auto rounded-circle" alt="">
+ </div>
+ </div>
+ {{ end }}
+ <div class="col-sm-12 col-md-12 col-lg-8 content">
+ {{ .Site.Params.about.content | markdownify }}
+
+ {{ if .Site.Params.about.skills.enable }}
+ {{ .Site.Params.about.skills.title }}
+ <ul>
+ {{ range .Site.Params.about.skills.items }}
+ <li>{{ . | markdownify }}</li>
+ {{ end }}
+ </ul>
+ {{ end }}
+ </div>
+ </div>
+ </div>
+</section>
+{{ end }} \ No newline at end of file
diff --git a/layouts/partials/sections/achievements.html b/layouts/partials/sections/achievements.html
new file mode 100644
index 0000000..9e35415
--- /dev/null
+++ b/layouts/partials/sections/achievements.html
@@ -0,0 +1,36 @@
+{{ if .Site.Params.achievements.enable | default false }}
+<section id="achievements" class="py-5">
+ <div class="container">
+ <h3 class="text-center">Achievements</h3>
+ <div class="px-0 px-md-5 px-lg-5">
+ <div class="row justify-content-center px-3 px-md-5 px-lg-5">
+ {{ range .Site.Params.achievements.items }}
+ {{ if .url }}
+ <div class="col-lg-4 col-md-6 my-3">
+ <a class="card my-3 h-100 p-3" href="{{ .url }}" title="{{ .title }}" target="_blank">
+ <div class="card-body bg-transparent">
+ <h5 class="card-title bg-transparent">{{ .title }}</h5>
+ <div class="card-text secondary-font">
+ {{ .content }}
+ </div>
+ </div>
+ </a>
+ </div>
+ {{ else }}
+ <div class="col-lg-4 col-md-6 my-3">
+ <div class="card my-3 h-100 p-3" title="{{ .title }}">
+ <div class="card-body bg-transparent">
+ <h5 class="card-title bg-transparent">{{ .title }}</h5>
+ <div class="card-text secondary-font">
+ {{ .content }}
+ </div>
+ </div>
+ </div>
+ </div>
+ {{ end }}
+ {{ end }}
+ </div>
+ </div>
+ </div>
+</section>
+{{ end }} \ No newline at end of file
diff --git a/layouts/partials/sections/contact.html b/layouts/partials/sections/contact.html
new file mode 100644
index 0000000..32aeed3
--- /dev/null
+++ b/layouts/partials/sections/contact.html
@@ -0,0 +1,23 @@
+{{ if .Site.Params.contact.enable | default false }}
+<section id="contact" class="py-5">
+ <div class="container">
+ <h3 class="text-center">Get In Touch</h3>
+ <div class="px-0 px-md-5 px-lg-5">
+ <div class="row justify-content-center px-md-5">
+ <div class="col-md-8 py-3">
+ <div class="text-center">
+ {{ .Site.Params.contact.content | emojify | markdownify }}
+ </div>
+ {{ if .Site.Params.contact.email }}
+ <div class="text-center pt-3">
+ <a href="mailto:{{ .Site.Params.contact.email }}" class="btn">
+ {{ .Site.Params.contact.btnName | default "Get in Touch" }}
+ </a>
+ </div>
+ {{ end }}
+ </div>
+ </div>
+ </div>
+ </div>
+</section>
+{{ end }} \ No newline at end of file
diff --git a/layouts/partials/sections/education.html b/layouts/partials/sections/education.html
new file mode 100644
index 0000000..ca4f3b5
--- /dev/null
+++ b/layouts/partials/sections/education.html
@@ -0,0 +1,64 @@
+{{ if .Site.Params.education.enable | default false }}
+<section id="education" class="py-5">
+ <div class="container">
+ <h3 class="text-center">Education</h3>
+ <div class="row justify-content-center py-5">
+ {{ $indexMenu := .Site.Params.education.index }}
+ {{ range $index, $element := .Site.Params.education.items }}
+ <div class="col-12 p-0">
+ <div class="row row align-items-center justify-content-center m-1 mb-4">
+ {{ if $indexMenu }}
+ <div class="col-md-1 text-center me-2 p-0 d-none d-md-block">
+ <div class="py-2">
+ <span class="index shadow-lg">
+ {{ add $index 1 }}
+ </span>
+ </div>
+ </div>
+ {{ end }}
+
+ <div class="col-md-9">
+ <div class="card">
+ <div class="card-body">
+ <div class="float-end">
+ <small>{{ .date }}</small>
+ </div>
+ <h5 class="card-title">{{ .title }}</h5>
+
+ {{ if .school.url }}
+ <a href="{{ .school.url }}" target="_blank">
+ <h6>
+ {{ .school.name }}
+ </h6>
+ </a>
+ {{ else }}
+ {{ .school.name }}
+ {{ end }}
+
+ <div class="py-1">
+ GPA:
+ <i>
+ <small>{{ .GPA }}</small>
+ </i>
+ </div>
+ <div class="py-1 education-content">
+ {{ .content | markdownify}}
+ </div>
+
+ {{ if .featuredLink.enable }}
+ <div class="py-1">
+ <a href="{{ .featuredLink.url }}" class="btn">
+ {{ .featuredLink.name | default "Featured" }}
+ </a>
+ </div>
+ {{ end }}
+ </div>
+ </div>
+ </div>
+ </div>
+ </div>
+ {{ end }}
+ </div>
+ </div>
+</section>
+{{ end }} \ No newline at end of file
diff --git a/layouts/partials/sections/experience.html b/layouts/partials/sections/experience.html
new file mode 100644
index 0000000..c64c490
--- /dev/null
+++ b/layouts/partials/sections/experience.html
@@ -0,0 +1,132 @@
+{{ if .Site.Params.experience.enable | default false }}
+<section id="experience" class="py-5">
+ <div class="container">
+ <h3 class="text-center">Experience</h3>
+ <div class="row justify-content-center">
+ <div class="col-sm-12 col-md-8 col-lg-8 py-5">
+ <div class="experience-container px-3 pt-2">
+ <ul class="nav nav-pills mb-3 bg-transparent" id="pills-tab" role="tablist">
+ {{ range $index, $element := .Site.Params.experience.items }}
+ {{ if (eq $index 0) }}
+ <li class="nav-item px-1 bg-transparent" role="presentation">
+ <div
+ class="nav-link active bg-transparent"
+ aria-selected="true"
+ type="button"
+ role="tab"
+ data-bs-toggle="pill"
+ id='{{ replace .company " " "-" }}-{{ replace .date " " "-" }}-tab'
+ data-bs-target='#pills-{{ replace .company " " "-" }}-{{ replace .date " " "-" }}'
+ aria-controls='{{ replace .company " " "-" }}-{{ replace .date " " "-" }}'
+ >
+ {{ .company }}
+ </div>
+ </li>
+ {{ else }}
+ <li class="nav-item px-1 bg-transparent" role="presentation">
+ <div
+ class="nav-link bg-transparent"
+ aria-selected="true"
+ type="button"
+ role="tab"
+ data-bs-toggle="pill"
+ id='{{ replace .company " " "-" }}-{{ replace .date " " "-" }}-tab'
+ data-bs-target='#pills-{{ replace .company " " "-" }}-{{ replace .date " " "-" }}'
+ aria-controls='{{ replace .company " " "-" }}-{{ replace .date " " "-" }}'
+ >
+ {{ .company }}
+ </div>
+ </li>
+ {{ end }}
+ {{ end }}
+ </ul>
+ <div class="tab-content pb-5 pt-2 bg-transparent primary-font" id="pills-tabContent">
+ {{ range $index, $element := .Site.Params.experience.items }}
+ {{ if (eq $index 0) }}
+ <div
+ class="tab-pane fade show active bg-transparent"
+ role="tabpanel"
+ id='pills-{{ replace .company " " "-" }}-{{ replace .date " " "-" }}'
+ aria-labelledby='pills-{{ replace .company " " "-" }}-{{ replace .date " " "-" }}-tab'
+ >
+ <div>
+ <span class="h4">{{ .job }}</span>
+ <small>-</small>
+ <a href="{{ .companyUrl }}" target="_blank">{{ .company }}</a>
+ <div class="pb-1">
+ <small>{{ .date }}</small>
+ {{ if .info.enable | default true }}
+ <span class="p-2">
+ <span
+ style="cursor: pointer;"
+ data-bs-toggle="tooltip"
+ data-bs-placement="top"
+ data-bs-original-title={{ .info.content | default (print "Working as a " .job " at " .company ) }}
+ >
+ <i class="fas fa-info-circle fa-xs"></i>
+ </span>
+ </span>
+ {{ end }}
+ </div>
+
+ {{ if .featuredLink.enable | default false }}
+ <div class="py-2 featuredLink">
+ <a class="p-2 px-4 btn btn-outline-primary btn-sm" href={{ .featuredLink.url | default "#" }} target="_blank">
+ {{ .featuredLink.name | default "Featured Link" }}
+ </a>
+ </div>
+ {{ end }}
+ </div>
+
+ {{ .content | markdownify}}
+ </div>
+ {{ else }}
+ <div
+ class="tab-pane fade bg-transparent"
+ role="tabpanel"
+ id='pills-{{ replace .company " " "-" }}-{{ replace .date " " "-" }}'
+ aria-labelledby='pills-{{ replace .company " " "-" }}-{{ replace .date " " "-" }}-tab'
+ >
+ <div>
+ <span class="h4">{{ .job }}</span>
+ <small>-</small>
+ <a href="{{ .companyUrl }}" target="_blank">{{ .company }}</a>
+
+ <div class="pb-1">
+ <small>{{ .date }}</small>
+ {{ if .info.enable | default true }}
+ <span class="p-2">
+ <span
+ style="cursor: pointer;"
+ data-bs-toggle="tooltip"
+ data-bs-placement="top"
+ data-bs-original-title={{ .info.content | default (print "Worked as a " .job " at " .company ) }}
+ >
+ <i class="fas fa-info-circle fa-xs"></i>
+ </span>
+ </span>
+ {{ end }}
+ </div>
+
+ {{ if .featuredLink.enable | default false }}
+ <div class="py-2 featuredLink">
+ <a class="p-2 px-4 btn btn-outline-primary btn-sm" href={{ .featuredLink.url | default "#" }} target="_blank">
+ {{ .featuredLink.name | default "Featured Link" }}
+ </a>
+ </div>
+ {{ end }}
+ </div>
+
+ <div class="pt-2">
+ {{ .content | markdownify}}
+ </div>
+ </div>
+ {{ end }}
+ {{ end }}
+ </div>
+ </div>
+ </div>
+ </div>
+ </div>
+</section>
+{{ end }} \ No newline at end of file
diff --git a/layouts/partials/sections/footer/copyright.html b/layouts/partials/sections/footer/copyright.html
new file mode 100644
index 0000000..efacc04
--- /dev/null
+++ b/layouts/partials/sections/footer/copyright.html
@@ -0,0 +1,24 @@
+<div class="container py-4">
+ <div class="row justify-content-center">
+ <div class="col-md-4 text-center">
+ <div class="pb-2">
+ <a href="{{ .Site.BaseURL }}" title="{{ .Site.Title }}">
+ <img alt="Footer logo" src="{{ .Site.Params.navbar.brandLogo | default .Site.Params.favicon }}"
+ height="40px" width="40px">
+ </a>
+ </div>
+ &copy; {{ now.Format "2006"}} {{ .Site.Params.copyright }} All Rights Reserved
+ <div class="text-secondary">
+ Made with
+ <span class="text-danger">
+ &#10084;
+ </span>
+ and
+ <a href="https://github.com/gurusabarish/hugo-profile" target="_blank"
+ title="Designed and developed by gurusabarish">
+ Hugo Profile
+ </a>
+ </div>
+ </div>
+ </div>
+</div> \ No newline at end of file
diff --git a/layouts/partials/sections/footer/index.html b/layouts/partials/sections/footer/index.html
new file mode 100644
index 0000000..b1f6f1f
--- /dev/null
+++ b/layouts/partials/sections/footer/index.html
@@ -0,0 +1,10 @@
+<footer>
+ <!-- Recent blog posts -->
+ {{- partial "sections/footer/recentBlogPosts.html" . -}}
+
+ <!-- Social Icons -->
+ {{- partial "sections/footer/socialNetwork.html" . -}}
+
+ <!-- Copyright -->
+ {{- partial "sections/footer/copyright.html" . -}}
+</footer> \ No newline at end of file
diff --git a/layouts/partials/sections/footer/recentBlogPosts.html b/layouts/partials/sections/footer/recentBlogPosts.html
new file mode 100644
index 0000000..a02a728
--- /dev/null
+++ b/layouts/partials/sections/footer/recentBlogPosts.html
@@ -0,0 +1,25 @@
+<div class="container py-3" id="recent-posts">
+ {{ if .Site.Params.footer.recentPosts | default true }}
+ <div class="h3 text-center text-secondary py-3">Recent posts</div>
+ <div class="row justify-content-center">
+ {{ range ( where .Site.RegularPages "Type" "blogs" | first 3 ) }}
+ <div class="col-lg-4 col-md-6 pt-2">
+ <div class="card h-100">
+ <div class="card-body bg-transparent p-3 shadow-sm">
+ <a href="{{ .RelPermalink }}" class="primary-font card-title">
+ <h5 class="card-title bg-transparent" title="{{ .Title }}">{{ .Title | truncate 25 }}</h5>
+ </a>
+ <div class="card-text secondary-font">
+ <p>{{ .Summary | truncate 300}}</p>
+ </div>
+ </div>
+ <div class="mt-auto card-footer">
+ <span class="float-start">{{ .Date.Format "January 2, 2006" }}</span>
+ <a href="{{ .RelPermalink }}" class="float-end btn btn-outline-info btn-sm">Read</a>
+ </div>
+ </div>
+ </div>
+ {{ end }}
+ </div>
+ {{ end }}
+</div> \ No newline at end of file
diff --git a/layouts/partials/sections/footer/socialNetwork.html b/layouts/partials/sections/footer/socialNetwork.html
new file mode 100644
index 0000000..a7a0c72
--- /dev/null
+++ b/layouts/partials/sections/footer/socialNetwork.html
@@ -0,0 +1,95 @@
+<div class="text-center pt-2">
+ {{ if .Site.Params.footer.socialNetworks.github }}
+ <span class="px-1">
+ <a href="{{ .Site.Params.footer.socialNetworks.github }}" aria-label="github">
+ <svg xmlns="http://www.w3.org/2000/svg" width="2.7em" height="2.7em" viewBox="0 0 1792 1792">
+ <path
+ d="M522 1352q-8 9-20-3-13-11-4-19 8-9 20 3 12 11 4 19zm-42-61q9 12 0 19-8 6-17-7t0-18q9-7 17 6zm-61-60q-5 7-13 2-10-5-7-12 3-5 13-2 10 5 7 12zm31 34q-6 7-16-3-9-11-2-16 6-6 16 3 9 11 2 16zm129 112q-4 12-19 6-17-4-13-15t19-7q16 5 13 16zm63 5q0 11-16 11-17 2-17-11 0-11 16-11 17-2 17 11zm58-10q2 10-14 14t-18-8 14-15q16-2 18 9zm964-956v960q0 119-84.5 203.5t-203.5 84.5h-224q-16 0-24.5-1t-19.5-5-16-14.5-5-27.5v-239q0-97-52-142 57-6 102.5-18t94-39 81-66.5 53-105 20.5-150.5q0-121-79-206 37-91-8-204-28-9-81 11t-92 44l-38 24q-93-26-192-26t-192 26q-16-11-42.5-27t-83.5-38.5-86-13.5q-44 113-7 204-79 85-79 206 0 85 20.5 150t52.5 105 80.5 67 94 39 102.5 18q-40 36-49 103-21 10-45 15t-57 5-65.5-21.5-55.5-62.5q-19-32-48.5-52t-49.5-24l-20-3q-21 0-29 4.5t-5 11.5 9 14 13 12l7 5q22 10 43.5 38t31.5 51l10 23q13 38 44 61.5t67 30 69.5 7 55.5-3.5l23-4q0 38 .5 103t.5 68q0 22-11 33.5t-22 13-33 1.5h-224q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" />
+
+ <metadata>
+ <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:dc="http://purl.org/dc/elements/1.1/">
+ <rdf:Description about="https://iconscout.com/legal#licenses"
+ dc:title="Github, Online, Project, Hosting, Square"
+ dc:description="Github, Online, Project, Hosting, Square" dc:publisher="Iconscout"
+ dc:date="2016-12-14" dc:format="image/svg+xml" dc:language="en">
+ <dc:creator>
+ <rdf:Bag>
+ <rdf:li>Font Awesome</rdf:li>
+ </rdf:Bag>
+ </dc:creator>
+ </rdf:Description>
+ </rdf:RDF>
+ </metadata>
+ </svg>
+ </a>
+ </span>
+ {{ end }}
+
+ {{ if .Site.Params.footer.socialNetworks.linkedin }}
+ <span class="px-1">
+ <a href="{{ .Site.Params.footer.socialNetworks.linkedin }}" aria-label="linkedin">
+ <svg xmlns="http://www.w3.org/2000/svg" width='2.4em' height='2.4em' fill="#fff" aria-label="LinkedIn"
+ viewBox="0 0 512 512">
+ <rect width="512" height="512" fill="#0077b5" rx="15%" />
+ <circle cx="142" cy="138" r="37" />
+ <path stroke="#fff" stroke-width="66" d="M244 194v198M142 194v198" />
+ <path d="M276 282c0-20 13-40 36-40 24 0 33 18 33 45v105h66V279c0-61-32-89-76-89-34 0-51 19-59 32" />
+ </svg>
+ </a>
+ </span>
+ {{ end }}
+
+ {{ if .Site.Params.footer.socialNetworks.twitter }}
+ <a href="{{ .Site.Params.footer.socialNetworks.twitter }}" aria-label="twitter">
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="48px" height="48px">
+ <path fill="#03a9f4"
+ d="M42,37c0,2.762-2.239,5-5,5H11c-2.762,0-5-2.238-5-5V11c0-2.762,2.238-5,5-5h26c2.761,0,5,2.238,5,5 V37z" />
+ <path fill="#fff"
+ d="M36,17.12c-0.882,0.391-1.999,0.758-3,0.88c1.018-0.604,2.633-1.862,3-3 c-0.951,0.559-2.671,1.156-3.793,1.372C31.311,15.422,30.033,15,28.617,15C25.897,15,24,17.305,24,20v2c-4,0-7.9-3.047-10.327-6 c-0.427,0.721-0.667,1.565-0.667,2.457c0,1.819,1.671,3.665,2.994,4.543c-0.807-0.025-2.335-0.641-3-1c0,0.016,0,0.036,0,0.057 c0,2.367,1.661,3.974,3.912,4.422C16.501,26.592,16,27,14.072,27c0.626,1.935,3.773,2.958,5.928,3c-1.686,1.307-4.692,2-7,2 c-0.399,0-0.615,0.022-1-0.023C14.178,33.357,17.22,34,20,34c9.057,0,14-6.918,14-13.37c0-0.212-0.007-0.922-0.018-1.13 C34.95,18.818,35.342,18.104,36,17.12" />
+ </svg>
+ </a>
+ {{ end }}
+
+ {{ if .Site.Params.footer.socialNetworks.instagram }}
+ <a href="{{ .Site.Params.footer.socialNetworks.instagram }}" aria-label="instagram">
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="48px" height="48px">
+ <radialGradient id="yOrnnhliCrdS2gy~4tD8ma" cx="19.38" cy="42.035" r="44.899"
+ gradientUnits="userSpaceOnUse">
+ <stop offset="0" stop-color="#fd5" />
+ <stop offset=".328" stop-color="#ff543f" />
+ <stop offset=".348" stop-color="#fc5245" />
+ <stop offset=".504" stop-color="#e64771" />
+ <stop offset=".643" stop-color="#d53e91" />
+ <stop offset=".761" stop-color="#cc39a4" />
+ <stop offset=".841" stop-color="#c837ab" />
+ </radialGradient>
+ <path fill="url(#yOrnnhliCrdS2gy~4tD8ma)"
+ d="M34.017,41.99l-20,0.019c-4.4,0.004-8.003-3.592-8.008-7.992l-0.019-20 c-0.004-4.4,3.592-8.003,7.992-8.008l20-0.019c4.4-0.004,8.003,3.592,8.008,7.992l0.019,20 C42.014,38.383,38.417,41.986,34.017,41.99z" />
+ <radialGradient id="yOrnnhliCrdS2gy~4tD8mb" cx="11.786" cy="5.54" r="29.813"
+ gradientTransform="matrix(1 0 0 .6663 0 1.849)" gradientUnits="userSpaceOnUse">
+ <stop offset="0" stop-color="#4168c9" />
+ <stop offset=".999" stop-color="#4168c9" stop-opacity="0" />
+ </radialGradient>
+ <path fill="url(#yOrnnhliCrdS2gy~4tD8mb)"
+ d="M34.017,41.99l-20,0.019c-4.4,0.004-8.003-3.592-8.008-7.992l-0.019-20 c-0.004-4.4,3.592-8.003,7.992-8.008l20-0.019c4.4-0.004,8.003,3.592,8.008,7.992l0.019,20 C42.014,38.383,38.417,41.986,34.017,41.99z" />
+ <path fill="#fff"
+ d="M24,31c-3.859,0-7-3.14-7-7s3.141-7,7-7s7,3.14,7,7S27.859,31,24,31z M24,19c-2.757,0-5,2.243-5,5 s2.243,5,5,5s5-2.243,5-5S26.757,19,24,19z" />
+ <circle cx="31.5" cy="16.5" r="1.5" fill="#fff" />
+ <path fill="#fff"
+ d="M30,37H18c-3.859,0-7-3.14-7-7V18c0-3.86,3.141-7,7-7h12c3.859,0,7,3.14,7,7v12 C37,33.86,33.859,37,30,37z M18,13c-2.757,0-5,2.243-5,5v12c0,2.757,2.243,5,5,5h12c2.757,0,5-2.243,5-5V18c0-2.757-2.243-5-5-5H18z" />
+ </svg>
+ </a>
+ {{ end }}
+
+ {{ if .Site.Params.footer.socialNetworks.facebook }}
+ <a href="{{ .Site.Params.footer.socialNetworks.facebook }}" aria-label="facebook">
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="48px" height="48px">
+ <path fill="#3F51B5"
+ d="M42,37c0,2.762-2.238,5-5,5H11c-2.761,0-5-2.238-5-5V11c0-2.762,2.239-5,5-5h26c2.762,0,5,2.238,5,5V37z" />
+ <path fill="#FFF"
+ d="M34.368,25H31v13h-5V25h-3v-4h3v-2.41c0.002-3.508,1.459-5.59,5.592-5.59H35v4h-2.287C31.104,17,31,17.6,31,18.723V21h4L34.368,25z" />
+ </svg>
+ </a>
+ {{ end }}
+</div> \ No newline at end of file
diff --git a/layouts/partials/sections/header.html b/layouts/partials/sections/header.html
new file mode 100644
index 0000000..cea7ed8
--- /dev/null
+++ b/layouts/partials/sections/header.html
@@ -0,0 +1,171 @@
+{{- /* theme-toggle is enabled */}}
+{{- if (not .Site.Params.theme.disableThemeToggle) }}
+{{- /* theme is auto */}}
+<script>
+ if (localStorage.getItem("pref-theme") === "dark") {
+ document.body.classList.add('dark');
+ } else if (localStorage.getItem("pref-theme") === "light") {
+ document.body.classList.remove('dark')
+ } else if (window.matchMedia('(prefers-color-scheme: dark)').matches) {
+ document.body.classList.add('dark');
+ }
+
+</script>
+{{- /* theme-toggle is disabled and theme is auto */}}
+{{- else if (and (ne .Site.Params.theme.defaultTheme "light") (ne .Site.Params.theme.defaultTheme "dark"))}}
+<script>
+ if (window.matchMedia('(prefers-color-scheme: dark)').matches) {
+ document.body.classList.add('dark');
+ }
+
+</script>
+{{- end }}
+
+
+<!-- Navbar -->
+<header>
+ <nav class="pt-3 navbar navbar-expand-lg">
+ <div class="container-fluid mx-xs-2 mx-sm-5 mx-md-5 mx-lg-5">
+ <!-- navbar brand -->
+ <a class="navbar-brand primary-font text-wrap" href="{{ .Site.BaseURL | relURL }}">
+ {{ if or (.Site.Params.favicon) (.Site.Params.navbar.brandLogo) }}
+ <img src="{{ .Site.Params.navbar.brandLogo | default .Site.Params.favicon }}" width="30" height="30"
+ class="d-inline-block align-top">
+ {{ .Site.Params.navbar.brandName | default .Site.Params.title }}
+ {{ else }}
+ {{ .Site.Params.navbar.brandName | default .Site.Params.title }}
+ {{ end }}
+ </a>
+
+ <!-- navbar toggler -->
+ <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarContent"
+ aria-controls="navbarContent" aria-expanded="false" aria-label="Toggle navigation">
+ <svg aria-hidden="true" height="24" viewBox="0 0 16 16" version="1.1" width="24" data-view-component="true">
+ <path fill-rule="evenodd" d="M1 2.75A.75.75 0 011.75 2h12.5a.75.75 0 110 1.5H1.75A.75.75 0 011 2.75zm0 5A.75.75 0 011.75 7h12.5a.75.75 0 110 1.5H1.75A.75.75 0 011 7.75zM1.75 12a.75.75 0 100 1.5h12.5a.75.75 0 100-1.5H1.75z"></path>
+ </svg>
+ </button>
+
+ <!-- navbar content -->
+ <div class="collapse navbar-collapse text-wrap primary-font" id="navbarContent">
+ <ul class="navbar-nav {{ .Site.Params.navbar.align | default " ms-auto"}} text-center">
+ {{
+ if and
+ (.Site.Params.about.enable | default false)
+ (not (.Site.Params.navbar.menus.disableAbout | default false))
+ }}
+ <li class="nav-item navbar-text">
+ <a class="nav-link" href="{{ .Site.BaseURL | relURL }}#about" aria-label="about">About</a>
+ </li>
+ {{ end }}
+
+ {{
+ if and
+ (.Site.Params.experience.enable | default false)
+ (not (.Site.Params.navbar.menus.disableExperience | default false))
+ }}
+ <li class="nav-item navbar-text">
+ <a class="nav-link" href="{{ .Site.BaseURL | relURL }}#experience"
+ aria-label="experience">Experience</a>
+ </li>
+ {{ end }}
+
+ {{
+ if and
+ (.Site.Params.education.enable | default false)
+ (not (.Site.Params.navbar.menus.disableEducation | default false))
+ }}
+ <li class="nav-item navbar-text">
+ <a class="nav-link" href="{{ .Site.BaseURL | relURL }}#education"
+ aria-label="education">Education</a>
+ </li>
+ {{ end }}
+
+ {{
+ if and
+ (.Site.Params.projects.enable | default false)
+ (not (.Site.Params.navbar.menus.disableEducation | default false))
+ }}
+ {{/* {{ if .Site.Params.projects.enable | default false }} */}}
+ <li class="nav-item navbar-text">
+ <a class="nav-link" href="{{ .Site.BaseURL | relURL }}#projects"
+ aria-label="projects">Projects</a>
+ </li>
+ {{ end }}
+
+ {{
+ if and
+ (.Site.Params.achievements.enable | default false)
+ (not (.Site.Params.navbar.menus.disableAchievements | default false))
+ }}
+ <li class="nav-item navbar-text">
+ <a class="nav-link" href="{{ .Site.BaseURL | relURL }}#achievements"
+ aria-label="achievements">Achievements</a>
+ </li>
+ {{ end }}
+
+ {{ if and
+ (.Site.Params.contact.enable | default false)
+ (not (.Site.Params.navbar.menus.disableContact | default false))
+ }}
+ <li class="nav-item navbar-text">
+ <a class="nav-link" href="{{ .Site.BaseURL | relURL }}#contact"
+ aria-label="contact">Contact</a>
+ </li>
+ {{ end }}
+
+ <!-- custom menus from the user -->
+ {{ range .Site.Menus.main }}
+ {{ if .HasChildren }}
+ <!-- Dropdown menu -->
+ <li class="nav-item navbar-text dropdown">
+ <a class="nav-link dropdown-toggle" href="{{ .URL }}" id="navbarDropdown" role="button"
+ data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false" title="{{ .Title }}">
+ {{ .Name }}
+ </a>
+ <div class="dropdown-menu shadow-lg rounded" aria-labelledby="navbarDropdown">
+ {{ range .Children }}
+ <a class="dropdown-item text-center nav-link" href="{{ .URL }}"
+ title="{{ .Title }}">
+ {{ .Name }}
+ </a>
+ {{ end }}
+ </div>
+ </li>
+ {{else}}
+ <!-- Single menu item -->
+ <li class="nav-item navbar-text">
+ <a class="nav-link" href="{{.URL}}" title="{{ .Title }}">
+ {{ .Pre }}
+ {{ .Name }}
+ </a>
+ </li>
+ {{end}}
+ {{end}}
+ </ul>
+
+ <!-- darkmode mode toggle -->
+ {{ if (not .Site.Params.theme.disableThemeToggle) }}
+ <div class="text-center">
+ <button id="theme-toggle">
+ <svg id="moon" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
+ <path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path>
+ </svg>
+ <svg id="sun" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
+ <circle cx="12" cy="12" r="5"></circle>
+ <line x1="12" y1="1" x2="12" y2="3"></line>
+ <line x1="12" y1="21" x2="12" y2="23"></line>
+ <line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line>
+ <line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line>
+ <line x1="1" y1="12" x2="3" y2="12"></line>
+ <line x1="21" y1="12" x2="23" y2="12"></line>
+ <line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line>
+ <line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line>
+ </svg>
+ </button>
+ </div>
+
+ {{ end }}
+ </div>
+ </div>
+ </nav>
+</header>
diff --git a/layouts/partials/sections/hero/index.html b/layouts/partials/sections/hero/index.html
new file mode 100644
index 0000000..14602f4
--- /dev/null
+++ b/layouts/partials/sections/hero/index.html
@@ -0,0 +1,306 @@
+{{ if .Site.Params.hero.enable | default false }}
+<section id="hero" class="py-5">
+ <div class="container px-3 px-sm-5 px-md-5 px-lg-5 pt-lg-3">
+ <div class="row">
+ <div class="col-sm-12 col-md-12 col-lg-8 content" id="primary-font">
+ <span class="subtitle">
+ {{ .Site.Params.hero.intro }}
+ </span>
+ <h2>
+ {{ .Site.Params.hero.title }}
+ </h2>
+ <h3>
+ {{ .Site.Params.hero.subtitle }}
+ </h3>
+ <p class="hero-content">
+ {{ .Site.Params.hero.content | markdownify }}
+ </p>
+ <div class="row">
+ <div class="col-auto h-100">
+ {{ if .Site.Params.hero.button.enable }}
+ <a href="{{ .Site.Params.hero.button.url }}" class="btn">
+ {{ .Site.Params.hero.button.name }}
+ </a>
+ {{ end }}
+ </div>
+ <div class="col-auto px-0 h-100">
+ {{- partial "sections/hero/social.html" . -}}
+ </div>
+ </div>
+ </div>
+ <div class="col-sm-12 col-md-12 col-lg-4">
+ <div class="row justify-content-center">
+ <div class="col-sm-12 col-md-9 pt-5 image px-5 px-md-5 px-lg-0 text-center">
+ <img src="{{ .Site.Params.hero.image }}"
+ class="img-thumbnail mx-auto"
+ alt=""
+ >
+ </div>
+ </div>
+ </div>
+ </div>
+ </div>
+ <div class="hero-bottom-svg d-md-block d-lg-block d-none">
+ <svg xmlns="http://www.w3.org/2000/svg" width="201" height="201" viewBox="0 0 201 201">
+ <g id="Group_1168" data-name="Group 1168" transform="translate(-384 -1392)">
+ <rect id="Rectangle_2206" data-name="Rectangle 2206" width="12" height="2" rx="1"
+ transform="translate(391 1392) rotate(90)" fill="#282f49" />
+ <rect id="Rectangle_2271" data-name="Rectangle 2271" width="12" height="2" rx="1"
+ transform="translate(391 1500) rotate(90)" fill="#282f49" />
+ <rect id="Rectangle_2238" data-name="Rectangle 2238" width="12" height="2" rx="1"
+ transform="translate(391 1446) rotate(90)" fill="#282f49" />
+ <rect id="Rectangle_2278" data-name="Rectangle 2278" width="12" height="2" rx="1"
+ transform="translate(391 1554) rotate(90)" fill="#282f49" />
+ <rect id="Rectangle_2222" data-name="Rectangle 2222" width="12" height="2" rx="1"
+ transform="translate(391 1419) rotate(90)" fill="#282f49" />
+ <rect id="Rectangle_2272" data-name="Rectangle 2272" width="12" height="2" rx="1"
+ transform="translate(391 1527) rotate(90)" fill="#282f49" />
+ <rect id="Rectangle_2241" data-name="Rectangle 2241" width="12" height="2" rx="1"
+ transform="translate(391 1473) rotate(90)" fill="#282f49" />
+ <rect id="Rectangle_2288" data-name="Rectangle 2288" width="12" height="2" rx="1"
+ transform="translate(391 1581) rotate(90)" fill="#282f49" />
+ <rect id="Rectangle_2214" data-name="Rectangle 2214" width="12" height="2" rx="1"
+ transform="translate(499 1392) rotate(90)" fill="#282f49" />
+ <rect id="Rectangle_2289" data-name="Rectangle 2289" width="12" height="2" rx="1"
+ transform="translate(499 1500) rotate(90)" fill="#282f49" />
+ <rect id="Rectangle_2256" data-name="Rectangle 2256" width="12" height="2" rx="1"
+ transform="translate(499 1446) rotate(90)" fill="#282f49" />
+ <rect id="Rectangle_2290" data-name="Rectangle 2290" width="12" height="2" rx="1"
+ transform="translate(499 1554) rotate(90)" fill="#282f49" />
+ <rect id="Rectangle_2231" data-name="Rectangle 2231" width="12" height="2" rx="1"
+ transform="translate(499 1419) rotate(90)" fill="#282f49" />
+ <rect id="Rectangle_2291" data-name="Rectangle 2291" width="12" height="2" rx="1"
+ transform="translate(499 1527) rotate(90)" fill="#282f49" />
+ <rect id="Rectangle_2257" data-name="Rectangle 2257" width="12" height="2" rx="1"
+ transform="translate(499 1473) rotate(90)" fill="#282f49" />
+ <rect id="Rectangle_2292" data-name="Rectangle 2292" width="12" height="2" rx="1"
+ transform="translate(499 1581) rotate(90)" fill="#282f49" />
+ <rect id="Rectangle_2210" data-name="Rectangle 2210" width="12" height="2" rx="1"
+ transform="translate(445 1392) rotate(90)" fill="#282f49" />
+ <rect id="Rectangle_2279" data-name="Rectangle 2279" width="12" height="2" rx="1"
+ transform="translate(445 1500) rotate(90)" fill="#282f49" />
+ <rect id="Rectangle_2248" data-name="Rectangle 2248" width="12" height="2" rx="1"
+ transform="translate(445 1446) rotate(90)" fill="#282f49" />
+ <rect id="Rectangle_2280" data-name="Rectangle 2280" width="12" height="2" rx="1"
+ transform="translate(445 1554) rotate(90)" fill="#282f49" />
+ <rect id="Rectangle_2226" data-name="Rectangle 2226" width="12" height="2" rx="1"
+ transform="translate(445 1419) rotate(90)" fill="#282f49" />
+ <rect id="Rectangle_2281" data-name="Rectangle 2281" width="12" height="2" rx="1"
+ transform="translate(445 1527) rotate(90)" fill="#282f49" />
+ <rect id="Rectangle_2249" data-name="Rectangle 2249" width="12" height="2" rx="1"
+ transform="translate(445 1473) rotate(90)" fill="#282f49" />
+ <rect id="Rectangle_2293" data-name="Rectangle 2293" width="12" height="2" rx="1"
+ transform="translate(445 1581) rotate(90)" fill="#282f49" />
+ <rect id="Rectangle_2219" data-name="Rectangle 2219" width="12" height="2" rx="1"
+ transform="translate(553 1392) rotate(90)" fill="#282f49" />
+ <rect id="Rectangle_2310" data-name="Rectangle 2310" width="12" height="2" rx="1"
+ transform="translate(553 1500) rotate(90)" fill="#282f49" />
+ <rect id="Rectangle_2262" data-name="Rectangle 2262" width="12" height="2" rx="1"
+ transform="translate(553 1446) rotate(90)" fill="#282f49" />
+ <rect id="Rectangle_2311" data-name="Rectangle 2311" width="12" height="2" rx="1"
+ transform="translate(553 1554) rotate(90)" fill="#282f49" />
+ <rect id="Rectangle_2232" data-name="Rectangle 2232" width="12" height="2" rx="1"
+ transform="translate(553 1419) rotate(90)" fill="#282f49" />
+ <rect id="Rectangle_2312" data-name="Rectangle 2312" width="12" height="2" rx="1"
+ transform="translate(553 1527) rotate(90)" fill="#282f49" />
+ <rect id="Rectangle_2263" data-name="Rectangle 2263" width="12" height="2" rx="1"
+ transform="translate(553 1473) rotate(90)" fill="#282f49" />
+ <rect id="Rectangle_2313" data-name="Rectangle 2313" width="12" height="2" rx="1"
+ transform="translate(553 1581) rotate(90)" fill="#282f49" />
+ <rect id="Rectangle_2209" data-name="Rectangle 2209" width="12" height="2" rx="1"
+ transform="translate(418 1392) rotate(90)" fill="#282f49" />
+ <rect id="Rectangle_2273" data-name="Rectangle 2273" width="12" height="2" rx="1"
+ transform="translate(418 1500) rotate(90)" fill="#282f49" />
+ <rect id="Rectangle_2242" data-name="Rectangle 2242" width="12" height="2" rx="1"
+ transform="translate(418 1446) rotate(90)" fill="#282f49" />
+ <rect id="Rectangle_2282" data-name="Rectangle 2282" width="12" height="2" rx="1"
+ transform="translate(418 1554) rotate(90)" fill="#282f49" />
+ <rect id="Rectangle_2223" data-name="Rectangle 2223" width="12" height="2" rx="1"
+ transform="translate(418 1419) rotate(90)" fill="#282f49" />
+ <rect id="Rectangle_2274" data-name="Rectangle 2274" width="12" height="2" rx="1"
+ transform="translate(418 1527) rotate(90)" fill="#282f49" />
+ <rect id="Rectangle_2243" data-name="Rectangle 2243" width="12" height="2" rx="1"
+ transform="translate(418 1473) rotate(90)" fill="#282f49" />
+ <rect id="Rectangle_2294" data-name="Rectangle 2294" width="12" height="2" rx="1"
+ transform="translate(418 1581) rotate(90)" fill="#282f49" />
+ <rect id="Rectangle_2217" data-name="Rectangle 2217" width="12" height="2" rx="1"
+ transform="translate(526 1392) rotate(90)" fill="#282f49" />
+ <rect id="Rectangle_2314" data-name="Rectangle 2314" width="12" height="2" rx="1"
+ transform="translate(526 1500) rotate(90)" fill="#282f49" />
+ <rect id="Rectangle_2258" data-name="Rectangle 2258" width="12" height="2" rx="1"
+ transform="translate(526 1446) rotate(90)" fill="#282f49" />
+ <rect id="Rectangle_2315" data-name="Rectangle 2315" width="12" height="2" rx="1"
+ transform="translate(526 1554) rotate(90)" fill="#282f49" />
+ <rect id="Rectangle_2233" data-name="Rectangle 2233" width="12" height="2" rx="1"
+ transform="translate(526 1419) rotate(90)" fill="#282f49" />
+ <rect id="Rectangle_2316" data-name="Rectangle 2316" width="12" height="2" rx="1"
+ transform="translate(526 1527) rotate(90)" fill="#282f49" />
+ <rect id="Rectangle_2259" data-name="Rectangle 2259" width="12" height="2" rx="1"
+ transform="translate(526 1473) rotate(90)" fill="#282f49" />
+ <rect id="Rectangle_2317" data-name="Rectangle 2317" width="12" height="2" rx="1"
+ transform="translate(526 1581) rotate(90)" fill="#282f49" />
+ <rect id="Rectangle_2211" data-name="Rectangle 2211" width="12" height="2" rx="1"
+ transform="translate(472 1392) rotate(90)" fill="#282f49" />
+ <rect id="Rectangle_2295" data-name="Rectangle 2295" width="12" height="2" rx="1"
+ transform="translate(472 1500) rotate(90)" fill="#282f49" />
+ <rect id="Rectangle_2250" data-name="Rectangle 2250" width="12" height="2" rx="1"
+ transform="translate(472 1446) rotate(90)" fill="#282f49" />
+ <rect id="Rectangle_2296" data-name="Rectangle 2296" width="12" height="2" rx="1"
+ transform="translate(472 1554) rotate(90)" fill="#282f49" />
+ <rect id="Rectangle_2227" data-name="Rectangle 2227" width="12" height="2" rx="1"
+ transform="translate(472 1419) rotate(90)" fill="#282f49" />
+ <rect id="Rectangle_2297" data-name="Rectangle 2297" width="12" height="2" rx="1"
+ transform="translate(472 1527) rotate(90)" fill="#282f49" />
+ <rect id="Rectangle_2251" data-name="Rectangle 2251" width="12" height="2" rx="1"
+ transform="translate(472 1473) rotate(90)" fill="#282f49" />
+ <rect id="Rectangle_2298" data-name="Rectangle 2298" width="12" height="2" rx="1"
+ transform="translate(472 1581) rotate(90)" fill="#282f49" />
+ <rect id="Rectangle_2221" data-name="Rectangle 2221" width="12" height="2" rx="1"
+ transform="translate(580 1392) rotate(90)" fill="#282f49" />
+ <rect id="Rectangle_2318" data-name="Rectangle 2318" width="12" height="2" rx="1"
+ transform="translate(580 1500) rotate(90)" fill="#282f49" />
+ <rect id="Rectangle_2264" data-name="Rectangle 2264" width="12" height="2" rx="1"
+ transform="translate(580 1446) rotate(90)" fill="#282f49" />
+ <rect id="Rectangle_2319" data-name="Rectangle 2319" width="12" height="2" rx="1"
+ transform="translate(580 1554) rotate(90)" fill="#282f49" />
+ <rect id="Rectangle_2236" data-name="Rectangle 2236" width="12" height="2" rx="1"
+ transform="translate(580 1419) rotate(90)" fill="#282f49" />
+ <rect id="Rectangle_2320" data-name="Rectangle 2320" width="12" height="2" rx="1"
+ transform="translate(580 1527) rotate(90)" fill="#282f49" />
+ <rect id="Rectangle_2265" data-name="Rectangle 2265" width="12" height="2" rx="1"
+ transform="translate(580 1473) rotate(90)" fill="#282f49" />
+ <rect id="Rectangle_2321" data-name="Rectangle 2321" width="12" height="2" rx="1"
+ transform="translate(580 1581) rotate(90)" fill="#282f49" />
+ <rect id="Rectangle_2207" data-name="Rectangle 2207" width="12" height="2" rx="1"
+ transform="translate(396 1399) rotate(-180)" fill="#282f49" />
+ <rect id="Rectangle_2270" data-name="Rectangle 2270" width="12" height="2" rx="1"
+ transform="translate(396 1507) rotate(-180)" fill="#282f49" />
+ <rect id="Rectangle_2239" data-name="Rectangle 2239" width="12" height="2" rx="1"
+ transform="translate(396 1453) rotate(-180)" fill="#282f49" />
+ <rect id="Rectangle_2283" data-name="Rectangle 2283" width="12" height="2" rx="1"
+ transform="translate(396 1561) rotate(-180)" fill="#282f49" />
+ <rect id="Rectangle_2224" data-name="Rectangle 2224" width="12" height="2" rx="1"
+ transform="translate(396 1426) rotate(-180)" fill="#282f49" />
+ <rect id="Rectangle_2275" data-name="Rectangle 2275" width="12" height="2" rx="1"
+ transform="translate(396 1534) rotate(-180)" fill="#282f49" />
+ <rect id="Rectangle_2244" data-name="Rectangle 2244" width="12" height="2" rx="1"
+ transform="translate(396 1480) rotate(-180)" fill="#282f49" />
+ <rect id="Rectangle_2299" data-name="Rectangle 2299" width="12" height="2" rx="1"
+ transform="translate(396 1588) rotate(-180)" fill="#282f49" />
+ <rect id="Rectangle_2215" data-name="Rectangle 2215" width="12" height="2" rx="1"
+ transform="translate(504 1399) rotate(-180)" fill="#282f49" />
+ <rect id="Rectangle_2300" data-name="Rectangle 2300" width="12" height="2" rx="1"
+ transform="translate(504 1507) rotate(-180)" fill="#282f49" />
+ <rect id="Rectangle_2252" data-name="Rectangle 2252" width="12" height="2" rx="1"
+ transform="translate(504 1453) rotate(-180)" fill="#282f49" />
+ <rect id="Rectangle_2301" data-name="Rectangle 2301" width="12" height="2" rx="1"
+ transform="translate(504 1561) rotate(-180)" fill="#282f49" />
+ <rect id="Rectangle_2228" data-name="Rectangle 2228" width="12" height="2" rx="1"
+ transform="translate(504 1426) rotate(-180)" fill="#282f49" />
+ <rect id="Rectangle_2302" data-name="Rectangle 2302" width="12" height="2" rx="1"
+ transform="translate(504 1534) rotate(-180)" fill="#282f49" />
+ <rect id="Rectangle_2253" data-name="Rectangle 2253" width="12" height="2" rx="1"
+ transform="translate(504 1480) rotate(-180)" fill="#282f49" />
+ <rect id="Rectangle_2303" data-name="Rectangle 2303" width="12" height="2" rx="1"
+ transform="translate(504 1588) rotate(-180)" fill="#282f49" />
+ <rect id="Rectangle_2212" data-name="Rectangle 2212" width="12" height="2" rx="1"
+ transform="translate(450 1399) rotate(-180)" fill="#282f49" />
+ <rect id="Rectangle_2284" data-name="Rectangle 2284" width="12" height="2" rx="1"
+ transform="translate(450 1507) rotate(-180)" fill="#282f49" />
+ <rect id="Rectangle_2245" data-name="Rectangle 2245" width="12" height="2" rx="1"
+ transform="translate(450 1453) rotate(-180)" fill="#282f49" />
+ <rect id="Rectangle_2285" data-name="Rectangle 2285" width="12" height="2" rx="1"
+ transform="translate(450 1561) rotate(-180)" fill="#282f49" />
+ <rect id="Rectangle_2229" data-name="Rectangle 2229" width="12" height="2" rx="1"
+ transform="translate(450 1426) rotate(-180)" fill="#282f49" />
+ <rect id="Rectangle_2286" data-name="Rectangle 2286" width="12" height="2" rx="1"
+ transform="translate(450 1534) rotate(-180)" fill="#282f49" />
+ <rect id="Rectangle_2246" data-name="Rectangle 2246" width="12" height="2" rx="1"
+ transform="translate(450 1480) rotate(-180)" fill="#282f49" />
+ <rect id="Rectangle_2304" data-name="Rectangle 2304" width="12" height="2" rx="1"
+ transform="translate(450 1588) rotate(-180)" fill="#282f49" />
+ <rect id="Rectangle_2218" data-name="Rectangle 2218" width="12" height="2" rx="1"
+ transform="translate(558 1399) rotate(-180)" fill="#282f49" />
+ <rect id="Rectangle_2322" data-name="Rectangle 2322" width="12" height="2" rx="1"
+ transform="translate(558 1507) rotate(-180)" fill="#282f49" />
+ <rect id="Rectangle_2266" data-name="Rectangle 2266" width="12" height="2" rx="1"
+ transform="translate(558 1453) rotate(-180)" fill="#282f49" />
+ <rect id="Rectangle_2323" data-name="Rectangle 2323" width="12" height="2" rx="1"
+ transform="translate(558 1561) rotate(-180)" fill="#282f49" />
+ <rect id="Rectangle_2234" data-name="Rectangle 2234" width="12" height="2" rx="1"
+ transform="translate(558 1426) rotate(-180)" fill="#282f49" />
+ <rect id="Rectangle_2324" data-name="Rectangle 2324" width="12" height="2" rx="1"
+ transform="translate(558 1534) rotate(-180)" fill="#282f49" />
+ <rect id="Rectangle_2267" data-name="Rectangle 2267" width="12" height="2" rx="1"
+ transform="translate(558 1480) rotate(-180)" fill="#282f49" />
+ <rect id="Rectangle_2325" data-name="Rectangle 2325" width="12" height="2" rx="1"
+ transform="translate(558 1588) rotate(-180)" fill="#282f49" />
+ <rect id="Rectangle_2208" data-name="Rectangle 2208" width="12" height="2" rx="1"
+ transform="translate(423 1399) rotate(-180)" fill="#282f49" />
+ <rect id="Rectangle_2276" data-name="Rectangle 2276" width="12" height="2" rx="1"
+ transform="translate(423 1507) rotate(-180)" fill="#282f49" />
+ <rect id="Rectangle_2240" data-name="Rectangle 2240" width="12" height="2" rx="1"
+ transform="translate(423 1453) rotate(-180)" fill="#282f49" />
+ <rect id="Rectangle_2287" data-name="Rectangle 2287" width="12" height="2" rx="1"
+ transform="translate(423 1561) rotate(-180)" fill="#282f49" />
+ <rect id="Rectangle_2225" data-name="Rectangle 2225" width="12" height="2" rx="1"
+ transform="translate(423 1426) rotate(-180)" fill="#282f49" />
+ <rect id="Rectangle_2277" data-name="Rectangle 2277" width="12" height="2" rx="1"
+ transform="translate(423 1534) rotate(-180)" fill="#282f49" />
+ <rect id="Rectangle_2247" data-name="Rectangle 2247" width="12" height="2" rx="1"
+ transform="translate(423 1480) rotate(-180)" fill="#282f49" />
+ <rect id="Rectangle_2305" data-name="Rectangle 2305" width="12" height="2" rx="1"
+ transform="translate(423 1588) rotate(-180)" fill="#282f49" />
+ <rect id="Rectangle_2216" data-name="Rectangle 2216" width="12" height="2" rx="1"
+ transform="translate(531 1399) rotate(-180)" fill="#282f49" />
+ <rect id="Rectangle_2326" data-name="Rectangle 2326" width="12" height="2" rx="1"
+ transform="translate(531 1507) rotate(-180)" fill="#282f49" />
+ <rect id="Rectangle_2260" data-name="Rectangle 2260" width="12" height="2" rx="1"
+ transform="translate(531 1453) rotate(-180)" fill="#282f49" />
+ <rect id="Rectangle_2327" data-name="Rectangle 2327" width="12" height="2" rx="1"
+ transform="translate(531 1561) rotate(-180)" fill="#282f49" />
+ <rect id="Rectangle_2235" data-name="Rectangle 2235" width="12" height="2" rx="1"
+ transform="translate(531 1426) rotate(-180)" fill="#282f49" />
+ <rect id="Rectangle_2328" data-name="Rectangle 2328" width="12" height="2" rx="1"
+ transform="translate(531 1534) rotate(-180)" fill="#282f49" />
+ <rect id="Rectangle_2261" data-name="Rectangle 2261" width="12" height="2" rx="1"
+ transform="translate(531 1480) rotate(-180)" fill="#282f49" />
+ <rect id="Rectangle_2329" data-name="Rectangle 2329" width="12" height="2" rx="1"
+ transform="translate(531 1588) rotate(-180)" fill="#282f49" />
+ <rect id="Rectangle_2213" data-name="Rectangle 2213" width="12" height="2" rx="1"
+ transform="translate(477 1399) rotate(-180)" fill="#282f49" />
+ <rect id="Rectangle_2306" data-name="Rectangle 2306" width="12" height="2" rx="1"
+ transform="translate(477 1507) rotate(-180)" fill="#282f49" />
+ <rect id="Rectangle_2254" data-name="Rectangle 2254" width="12" height="2" rx="1"
+ transform="translate(477 1453) rotate(-180)" fill="#282f49" />
+ <rect id="Rectangle_2307" data-name="Rectangle 2307" width="12" height="2" rx="1"
+ transform="translate(477 1561) rotate(-180)" fill="#282f49" />
+ <rect id="Rectangle_2230" data-name="Rectangle 2230" width="12" height="2" rx="1"
+ transform="translate(477 1426) rotate(-180)" fill="#282f49" />
+ <rect id="Rectangle_2308" data-name="Rectangle 2308" width="12" height="2" rx="1"
+ transform="translate(477 1534) rotate(-180)" fill="#282f49" />
+ <rect id="Rectangle_2255" data-name="Rectangle 2255" width="12" height="2" rx="1"
+ transform="translate(477 1480) rotate(-180)" fill="#282f49" />
+ <rect id="Rectangle_2309" data-name="Rectangle 2309" width="12" height="2" rx="1"
+ transform="translate(477 1588) rotate(-180)" fill="#282f49" />
+ <rect id="Rectangle_2220" data-name="Rectangle 2220" width="12" height="2" rx="1"
+ transform="translate(585 1399) rotate(-180)" fill="#282f49" />
+ <rect id="Rectangle_2330" data-name="Rectangle 2330" width="12" height="2" rx="1"
+ transform="translate(585 1507) rotate(-180)" fill="#282f49" />
+ <rect id="Rectangle_2268" data-name="Rectangle 2268" width="12" height="2" rx="1"
+ transform="translate(585 1453) rotate(-180)" fill="#282f49" />
+ <rect id="Rectangle_2331" data-name="Rectangle 2331" width="12" height="2" rx="1"
+ transform="translate(585 1561) rotate(-180)" fill="#282f49" />
+ <rect id="Rectangle_2237" data-name="Rectangle 2237" width="12" height="2" rx="1"
+ transform="translate(585 1426) rotate(-180)" fill="#282f49" />
+ <rect id="Rectangle_2332" data-name="Rectangle 2332" width="12" height="2" rx="1"
+ transform="translate(585 1534) rotate(-180)" fill="#282f49" />
+ <rect id="Rectangle_2269" data-name="Rectangle 2269" width="12" height="2" rx="1"
+ transform="translate(585 1480) rotate(-180)" fill="#282f49" />
+ <rect id="Rectangle_2333" data-name="Rectangle 2333" width="12" height="2" rx="1"
+ transform="translate(585 1588) rotate(-180)" fill="#282f49" />
+ </g>
+ </svg>
+ </div>
+</section>
+{{ end }} \ No newline at end of file
diff --git a/layouts/partials/sections/hero/social.html b/layouts/partials/sections/hero/social.html
new file mode 100644
index 0000000..ab5e8ef
--- /dev/null
+++ b/layouts/partials/sections/hero/social.html
@@ -0,0 +1,17 @@
+<span id="loading-icons" style="display: none;">
+ {{ range .Site.Params.hero.socialLinks.fontAwesomeIcons }}
+ <span class="px-1">
+ <a href="{{ .url }}" target="_blank" class="btn social-icon">
+ <i class="{{ .icon }}"></i>
+ </a>
+ </span>
+ {{ end }}
+
+ {{ range .Site.Params.hero.socialLinks.customIcons }}
+ <span class="px-1">
+ <a href="{{ .url }}" target="_blank" class="btn social-icon">
+ <img src="{{ .icon }}">
+ </a>
+ </span>
+ {{ end }}
+</span> \ No newline at end of file
diff --git a/layouts/partials/sections/projects.html b/layouts/partials/sections/projects.html
new file mode 100644
index 0000000..c7c0129
--- /dev/null
+++ b/layouts/partials/sections/projects.html
@@ -0,0 +1,83 @@
+{{ if .Site.Params.projects.enable | default false }}
+<section id="projects" class="py-5">
+ <div class="container">
+ <h3 class="text-center">Projects</h3>
+ <div class="row justify-content-center px-3 px-md-5">
+ {{ range .Site.Params.projects.items }}
+ <div class="col-lg-4 col-md-6 my-3">
+ <div class="card my-3 h-100" title="{{ .title }}">
+ <div class="card-head">
+ <img class="card-img-top" src="{{ .image }}" alt="{{ .title }}">
+ </div>
+ <div class="card-body bg-transparent p-3">
+ <div class="pb-2 bg-transparent">
+ {{ range .badges }}
+ <span class="badge badge-secondary">{{ . }}</span>
+ {{ end }}
+ </div>
+ <h5 class="card-title bg-transparent mt-1">{{ .title }}</h5>
+ <div class="card-text bg-transparent secondary-font">
+ {{ .content }}
+ </div>
+ </div>
+ {{ if or (.links) (.featured) }}
+ <div class="card-footer py-3">
+ {{ range .links }}
+ <span class="m-1 mx-2">
+ <a href="{{ .url }}" target="_blank">
+ <i class="{{ .icon }}"></i>
+ </a>
+ </span>
+ {{ end }}
+ {{ if .featured }}
+ <span class="float-end">
+ <a class="btn btn-sm" href="{{ .featured.link }}" target="_blank">
+ {{ .featured.name }}
+ </a>
+ </span>
+ {{ end }}
+ </div>
+ {{ end }}
+ </div>
+ </div>
+ {{ end }}
+ {{ range ( where .Site.RegularPages "Type" "projects" ) }}
+ {{ if .Params.showInHome | default true }}
+ <div class="col-lg-4 col-md-6 my-3">
+ <div class="card my-3 h-100" title="{{ .Title }}">
+ <div class="card-head">
+ <img class="card-img-top" src="{{ .Params.image }}" alt="{{ .Title }}">
+ </div>
+ <div class="card-body bg-transparent p-3">
+ <div class="pb-2 bg-transparent">
+ {{ range .Params.badges }}
+ <span class="badge badge-secondary">{{ . }}</span>
+ {{ end }}
+ </div>
+ <h5 class="card-title bg-transparent">{{ .Title | truncate 50 }}</h5>
+ <div class="card-text bg-transparent secondary-font">
+ {{ .Summary | truncate 100 | safeHTML }}
+ </div>
+ </div>
+ <div class="card-footer py-3">
+ {{ range .Params.links }}
+ <span class="m-1 mx-2">
+ <a href="{{ .url }}">
+ <i class="{{ .icon }}"></i>
+ </a>
+ </span>
+ {{ end }}
+ <span class="float-end">
+ <a class="btn btn-sm" href="{{ .RelPermalink }}">
+ Know more
+ </a>
+ </span>
+ </div>
+ </div>
+ </div>
+ {{ end }}
+ {{ end }}
+ </div>
+ </div>
+</section>
+{{ end }} \ No newline at end of file
diff --git a/layouts/partials/sections/v1/about.html b/layouts/partials/sections/v1/about.html
deleted file mode 100644
index 425d0cc..0000000
--- a/layouts/partials/sections/v1/about.html
+++ /dev/null
@@ -1,70 +0,0 @@
-<section>
- <div class="about p-3" id="about">
- <div class="container">
- <div class="about-me text-center font-weight-bold text-secondary">About Me</div>
-
-
- <div class="row justify-content-center ">
- <div class="col-lg-3 pt-4 text-center">
- <img src="{{ .Site.Params.profile_image }}" width="200px" alt="{{ .Site.Params.name }}"
- class="rounded">
- <div class="about-me jop font-weight-bold text-secondary">{{ .Site.Params.job }}</div>
-
- {{ if .Site.Params.linkedin }}
- <a class="text-white" href="{{ .Site.Params.linkedin }}" aria-label="linkedin">
- <svg class="text-primary" width="2em" height="2em" fill="currentColor"
- xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512">
- <path
- d="M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z" />
- </svg>
- </a>
- {{ end }}
- </div>
-
- <div class="col-lg-7 pt-3 ">
- <div class="about-content text-dark p-3">
- {{ .Site.Params.descripe_l1_person }}
- <br><br>
- {{ .Site.Params.descripe_l2_person }}
- </div>
- <div class="social p-4">
- <a href="{{ .Site.Params.resume | default "#" }}" class="btn btn-info" role="button"
- aria-pressed="true">
- Resume
- </a>
-
- {{ if .Site.Params.github }}
- <a class="text-dark" href="{{ .Site.Params.github }}" aria-label="github">
- <svg width="2em" height="2em" fill="currentColor" xmlns="http://www.w3.org/2000/svg"
- viewBox="0 0 448 512">
- <path
- d="M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM277.3 415.7c-8.4 1.5-11.5-3.7-11.5-8 0-5.4.2-33 .2-55.3 0-15.6-5.2-25.5-11.3-30.7 37-4.1 76-9.2 76-73.1 0-18.2-6.5-27.3-17.1-39 1.7-4.3 7.4-22-1.7-45-13.9-4.3-45.7 17.9-45.7 17.9-13.2-3.7-27.5-5.6-41.6-5.6-14.1 0-28.4 1.9-41.6 5.6 0 0-31.8-22.2-45.7-17.9-9.1 22.9-3.5 40.6-1.7 45-10.6 11.7-15.6 20.8-15.6 39 0 63.6 37.3 69 74.3 73.1-4.8 4.3-9.1 11.7-10.6 22.3-9.5 4.3-33.8 11.7-48.3-13.9-9.1-15.8-25.5-17.1-25.5-17.1-16.2-.2-1.1 10.2-1.1 10.2 10.8 5 18.4 24.2 18.4 24.2 9.7 29.7 56.1 19.7 56.1 19.7 0 13.9.2 36.5.2 40.6 0 4.3-3 9.5-11.5 8-66-22.1-112.2-84.9-112.2-158.3 0-91.8 70.2-161.5 162-161.5S388 165.6 388 257.4c.1 73.4-44.7 136.3-110.7 158.3zm-98.1-61.1c-1.9.4-3.7-.4-3.9-1.7-.2-1.5 1.1-2.8 3-3.2 1.9-.2 3.7.6 3.9 1.9.3 1.3-1 2.6-3 3zm-9.5-.9c0 1.3-1.5 2.4-3.5 2.4-2.2.2-3.7-.9-3.7-2.4 0-1.3 1.5-2.4 3.5-2.4 1.9-.2 3.7.9 3.7 2.4zm-13.7-1.1c-.4 1.3-2.4 1.9-4.1 1.3-1.9-.4-3.2-1.9-2.8-3.2.4-1.3 2.4-1.9 4.1-1.5 2 .6 3.3 2.1 2.8 3.4zm-12.3-5.4c-.9 1.1-2.8.9-4.3-.6-1.5-1.3-1.9-3.2-.9-4.1.9-1.1 2.8-.9 4.3.6 1.3 1.3 1.8 3.3.9 4.1zm-9.1-9.1c-.9.6-2.6 0-3.7-1.5s-1.1-3.2 0-3.9c1.1-.9 2.8-.2 3.7 1.3 1.1 1.5 1.1 3.3 0 4.1zm-6.5-9.7c-.9.9-2.4.4-3.5-.6-1.1-1.3-1.3-2.8-.4-3.5.9-.9 2.4-.4 3.5.6 1.1 1.3 1.3 2.8.4 3.5zm-6.7-7.4c-.4.9-1.7 1.1-2.8.4-1.3-.6-1.9-1.7-1.5-2.6.4-.6 1.5-.9 2.8-.4 1.3.7 1.9 1.8 1.5 2.6z" />
- </svg>
- </a>
- {{ end }}
-
- {{ if .Site.Params.twitter }}
- <a class="text-info" href="{{ .Site.Params.twitter }}" aria-label="twitter">
- <svg width="2em" height="2em" fill="currentColor" xmlns="http://www.w3.org/2000/svg"
- viewBox="0 0 448 512">
- <path
- d="M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-48.9 158.8c.2 2.8.2 5.7.2 8.5 0 86.7-66 186.6-186.6 186.6-37.2 0-71.7-10.8-100.7-29.4 5.3.6 10.4.8 15.8.8 30.7 0 58.9-10.4 81.4-28-28.8-.6-53-19.5-61.3-45.5 10.1 1.5 19.2 1.5 29.6-1.2-30-6.1-52.5-32.5-52.5-64.4v-.8c8.7 4.9 18.9 7.9 29.6 8.3a65.447 65.447 0 0 1-29.2-54.6c0-12.2 3.2-23.4 8.9-33.1 32.3 39.8 80.8 65.8 135.2 68.6-9.3-44.5 24-80.6 64-80.6 18.9 0 35.9 7.9 47.9 20.7 14.8-2.8 29-8.3 41.6-15.8-4.9 15.2-15.2 28-28.8 36.1 13.2-1.4 26-5.1 37.8-10.2-8.9 13.1-20.1 24.7-32.9 34z" />
- </svg>
- </a>
- {{ end }}
-
- {{ if .Site.Params.instagram }}
- <a class="text-danger" href="{{ .Site.Params.instagram }}" aria-label="instagram">
- <svg width="2em" height="2em" fill="currentColor" xmlns="http://www.w3.org/2000/svg"
- viewBox="0 0 448 512">
- <path
- d="M224,202.66A53.34,53.34,0,1,0,277.36,256,53.38,53.38,0,0,0,224,202.66Zm124.71-41a54,54,0,0,0-30.41-30.41c-21-8.29-71-6.43-94.3-6.43s-73.25-1.93-94.31,6.43a54,54,0,0,0-30.41,30.41c-8.28,21-6.43,71.05-6.43,94.33S91,329.26,99.32,350.33a54,54,0,0,0,30.41,30.41c21,8.29,71,6.43,94.31,6.43s73.24,1.93,94.3-6.43a54,54,0,0,0,30.41-30.41c8.35-21,6.43-71.05,6.43-94.33S357.1,182.74,348.75,161.67ZM224,338a82,82,0,1,1,82-82A81.9,81.9,0,0,1,224,338Zm85.38-148.3a19.14,19.14,0,1,1,19.13-19.14A19.1,19.1,0,0,1,309.42,189.74ZM400,32H48A48,48,0,0,0,0,80V432a48,48,0,0,0,48,48H400a48,48,0,0,0,48-48V80A48,48,0,0,0,400,32ZM382.88,322c-1.29,25.63-7.14,48.34-25.85,67s-41.4,24.63-67,25.85c-26.41,1.49-105.59,1.49-132,0-25.63-1.29-48.26-7.15-67-25.85s-24.63-41.42-25.85-67c-1.49-26.42-1.49-105.61,0-132,1.29-25.63,7.07-48.34,25.85-67s41.47-24.56,67-25.78c26.41-1.49,105.59-1.49,132,0,25.63,1.29,48.33,7.15,67,25.85s24.63,41.42,25.85,67.05C384.37,216.44,384.37,295.56,382.88,322Z" />
- </svg>
- </a>
- {{ end }}
- </div>
- </div>
- </div>
- </div>
- </div>
-</section> \ No newline at end of file
diff --git a/layouts/partials/sections/v1/blog.html b/layouts/partials/sections/v1/blog.html
deleted file mode 100644
index 944fceb..0000000
--- a/layouts/partials/sections/v1/blog.html
+++ /dev/null
@@ -1,23 +0,0 @@
-<section>
- <div class="p-3 blog-back">
- <div class="container">
- <div class="text-center pb-3">
- <div class="recent-posts">Recent posts</div>
- </div>
- <div class="container">
- <div class="row">
- {{ range first 4 (where site.RegularPages.ByDate.Reverse "Type" "in" site.Params.mainSections )}}
- <div class="col-lg-3 col-md-5 pb-3 post-card text-center">
- <a href="{{ .RelPermalink }}">
- <span class="text-secondary">{{ .Date.Format "January 2, 2006" }}</span>
- <div class="text-dark">
- {{ .Title }}
- </div>
- </a>
- </div>
- {{ end }}
- </div>
- </div>
- </div>
- </div>
-</section>
diff --git a/layouts/partials/sections/v1/contact.html b/layouts/partials/sections/v1/contact.html
deleted file mode 100644
index c8d83b3..0000000
--- a/layouts/partials/sections/v1/contact.html
+++ /dev/null
@@ -1,31 +0,0 @@
-{{ if .Site.Params.contact }}
-<section id="contact">
- <div class="contact bg-danger text-white">
- <div class="text-center p-3 font-weight-bold contact-head">Get In Tough</div>
- <div class="p-3 container">
- <div class="row justify-content-center">
- <div class="col-lg-7">
- <form action="{{ .Site.Params.action }}">
- <div class="form-group">
- <label for="name">Name</label>
- <input type="text" class="form-control" id="name" placeholder="Your name" name="{{ .Site.Params.emailname }}">
- </div>
- <div class="form-group">
- <label for="email">Email</label>
- <input type="email" class="form-control" id="email" placeholder="example@gmail.com" name="{{ .Site.Params.emailname }}">
- </div>
-
- <div class="form-group">
- <label for="message">Message</label>
- <textarea class="form-control" id="message" rows="3" name="{{ .Site.Params.messagename }}" placeholder="Type something"></textarea>
- </div>
- <div class="text-center">
- <button type="submit" class="btn btn-sm btn-primary">Submit</button>
- </div>
- </form>
- </div>
- </div>
- </div>
- </div>
-</section>
-{{ end }}
diff --git a/layouts/partials/sections/v1/do_things.html b/layouts/partials/sections/v1/do_things.html
deleted file mode 100644
index 6d1a6ff..0000000
--- a/layouts/partials/sections/v1/do_things.html
+++ /dev/null
@@ -1,45 +0,0 @@
-{{ if .Site.Params.usedothings }}
-<section>
- <div class="pt-3 do-things text-center" id="do-things">
- <div class="container">
- <div class="things-i-do text-primary font-weight-bold">
- Things I do
- </div>
-
- <div class="do-things-card">
- <div class="row pb-2 justify-content-center">
- {{ range .Site.Params.Things }}
- {{ if .url }}
- <div class="col-lg-3 col-md-4">
- <a id="nothing" href={{ .url | default "#" }} class="">
- <div class="things shadow rounded p-4 my-2 mb-4 card bg-primary text-light">
- <i class="{{ .logo }} fa-3x" width="3em" height="3em"></i>
- <div class="p-2 font-weight-bold">
- {{ .title }}
- </div>
- <div class="py-4 things-text">
- {{ .description }}
- </div>
- </div>
- </a>
- </div>
- {{ else }}
- <div class="col-lg-3 col-md-4">
- <div class="things shadow rounded p-4 my-2 mb-4 card bg-primary text-light">
- <i class="{{ .logo }} fa-3x" width="3em" height="3em"></i>
- <div class="p-2 font-weight-bold">
- {{ .title }}
- </div>
- <div class="py-4 things-text">
- {{ .description }}
- </div>
- </div>
- </div>
- {{ end }}
- {{ end }}
- </div>
- </div>
- </div>
- </div>
-</section>
-{{ end }}
diff --git a/layouts/partials/sections/v1/footer.html b/layouts/partials/sections/v1/footer.html
deleted file mode 100644
index c955c65..0000000
--- a/layouts/partials/sections/v1/footer.html
+++ /dev/null
@@ -1,12 +0,0 @@
-<footer class="footer py-3 text-muted text-center">
- <div class="footer-site text-uppercase pb-2 font-weight-bold">
- <a href="{{ .Site.BaseURL }}">{{ .Site.Title }}</a>
- </div>
- &copy; {{ dateFormat "2006" now }} All Rights Reserved<br>
- <div>
- Made with &#10084; and
- <a href="https://github.com/gurusabarish/hugo-profile" target="_blank">Hugo profile</a>
- | Designed and Developed by
- <a href="https://www.linkedin.com/in/gurusabarish/" target="_blank">Gurusabarish</a>
- </div>
-</footer> \ No newline at end of file
diff --git a/layouts/partials/sections/v1/head.html b/layouts/partials/sections/v1/head.html
deleted file mode 100644
index f508e05..0000000
--- a/layouts/partials/sections/v1/head.html
+++ /dev/null
@@ -1,11 +0,0 @@
-<meta charset="UTF-8">
-<meta name="viewport" content="width=device-width, initial-scale=1.0">
-<meta http-equiv="X-UA-Compatible" content="ie=edge">
-<link rel="icon" href="{{ .Site.Params.favicon | default " /images/favicon.png"}}" type="image/gif">
-<!-- Fonts -->
-<link href="https://fonts.googleapis.com/css2?family=Alata&display=swap" rel="stylesheet">
-
-<!-- Custom Styles -->
-{{ if .Site.Params.customCSS }}
-<link rel="stylesheet" href="/style.css">
-{{ end }} \ No newline at end of file
diff --git a/layouts/partials/sections/v1/header.html b/layouts/partials/sections/v1/header.html
deleted file mode 100644
index 65205c0..0000000
--- a/layouts/partials/sections/v1/header.html
+++ /dev/null
@@ -1,34 +0,0 @@
-<nav class="navbar navbar-expand-lg navbar-light bg-light">
- <div class="container">
- <a class="navbar-brand text-dark" href="{{ .Site.BaseURL }}">{{ .Site.Title }}</a>
- <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavDropdown"
- aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation">
- <span class="navbar-toggler-icon"></span>
- </button>
-
- <div class="collapse navbar-collapse" id="navbarNavDropdown">
- <ul class="navbar-nav ml-auto">
- <li class="nav-item">
- <a class="nav-link text-dark" href="{{ .Site.BaseURL }}#home">Home</a>
- </li>
- <li class="nav-item">
- <a class="nav-link text-dark" href="{{ .Site.BaseURL }}#about">About</a>
- </li>
- <li class="nav-item">
- <a class="nav-link text-dark" href="{{ .Site.BaseURL }}#projects">Projects</a>
- </li>
- {{ if .Site.Params.contact }}
- <li class="nav-item">
- <a class="nav-link text-dark" href="{{ .Site.BaseURL }}#contact">Contact</a>
- </li>
- {{ end }}
-
- {{ range site.Params.customMenus }}
- <li class="nav-item">
- <a class="nav-link text-dark" href="{{.Url}}">{{ .name }}</a>
- </li>
- {{ end }}
- </ul>
- </div>
- </div>
-</nav> \ No newline at end of file
diff --git a/layouts/partials/sections/v1/header1.html b/layouts/partials/sections/v1/header1.html
deleted file mode 100644
index cfdc50c..0000000
--- a/layouts/partials/sections/v1/header1.html
+++ /dev/null
@@ -1,39 +0,0 @@
-<nav class="navbar navbar-expand-lg navbar-light shadow-sm bg-gradient-primary">
- <div class="container">
- <a class="navbar-brand font-weight-bold" href="{{ .Site.BaseURL | relURL }}">
- {{ if .Site.Params.favicon }}
- <img src="{{ .Site.Params.favicon }}" width="30" height="30" class="d-inline-block align-top">
- {{ .Site.Title }}
- {{ else }}
- {{ .Site.Title }}
- {{ end }}
- </a>
- <button class="navbar-toggler border-0" type="button" data-toggle="collapse" data-target="#navbarNavDropdown" aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation">
- <span class="navbar-toggler-icon"></span>
- </button>
-
- <div class="collapse navbar-collapse" id="navbarNavDropdown">
- <ul class="navbar-nav ml-auto text-center">
- <li class="nav-item navbar-text">
- <a class="nav-link" href="{{ .Site.BaseURL }}#home">Home</a>
- </li>
- <li class="nav-item navbar-text">
- <a class="nav-link" href="{{ .Site.BaseURL }}#about">About</a>
- </li>
- <li class="nav-item navbar-text">
- <a class="nav-link" href="{{ .Site.BaseURL }}#projects">Projects</a>
- </li>
- {{ if .Site.Params.contact }}
- <li class="nav-item navbar-text">
- <a class="nav-link" href="{{ .Site.BaseURL }}#contact">Contact</a>
- </li>
- {{ end }}
- {{ range site.Params.customMenus }}
- <li class="nav-item navbar-text">
- <a class="nav-link" href="{{.Url}}" aria-label="{{ .name }}">{{ .name }}</a>
- </li>
- {{ end }}
- </ul>
- </div>
- </div>
-</nav>
diff --git a/layouts/partials/sections/v1/home.html b/layouts/partials/sections/v1/home.html
deleted file mode 100644
index 6c087d3..0000000
--- a/layouts/partials/sections/v1/home.html
+++ /dev/null
@@ -1,123 +0,0 @@
-{{ $backgroundImage:= "https://i.ibb.co/w4HYQcH/background.png" }}
-{{ $backimg:= "https://i.ibb.co/P5wwmWK/back.png" }}
-
-{{ if .Site.Params.custombackground }}
-{{ $backgroundImage = .Site.Params.background }}
-{{ $backimg = .Site.Params.backimg }}
-{{ end }}
-
-<section>
- <div class="home" style="background-image: url('{{ $backgroundImage | absURL }}');">
- <nav class="navbar navbar-expand-lg navbar-light bg-transperant">
- <div class="container">
- <a class="navbar-brand text-dark" href="{{ .Site.BaseURL }}">{{ .Site.Title }}</a>
- <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavDropdown"
- aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation">
- <span class="navbar-toggler-icon"></span>
- </button>
-
- <div class="collapse navbar-collapse" id="navbarNavDropdown">
- <ul class="navbar-nav ml-auto">
- <li class="nav-item navbar-text">
- <a class="nav-link text-dark" href="{{ .Site.BaseURL }}#home" aria-label="home">Home</a>
- </li>
- <li class="nav-item navbar-text">
- <a class="nav-link text-dark" href="{{ .Site.BaseURL }}#about" aria-label="about">About</a>
- </li>
- <li class="nav-item navbar-text">
- <a class="nav-link text-dark" href="{{ .Site.BaseURL }}#projects" aria-label="projects">Projects</a>
- </li>
- {{ if .Site.Params.contact }}
- <li class="nav-item navbar-text">
- <a class="nav-link text-dark" href="{{ .Site.BaseURL }}#contact" aria-label="contact">Contact</a>
- </li>
- {{ end }}
-
- {{ range site.Params.customMenus }}
- <li class="nav-item navbar-text">
- <a class="nav-link text-dark" href="{{.Url}}" aria-label="{{ .name }}">{{ .name }}</a>
- </li>
- {{ end }}
- </ul>
- </div>
- </div>
- </nav>
-
- <div class="container">
- <div class="row justify-content-center" id="home">
- <div class="text-white col-lg-8">
- <div class="name-intro">
- Hi there, I'm
- <h1 class="name">{{ .Site.Params.name }}</h1>
-
- <!-- socialmedia -->
- <div class="social">
- {{ if .Site.Params.github }}
- <a class="text-white" href="{{ .Site.Params.github }}" aria-label="github">
- <svg width="1.1em" height="1.1em" fill="currentColor" xmlns="http://www.w3.org/2000/svg"
- viewBox="0 0 448 512">
- <path
- d="M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM277.3 415.7c-8.4 1.5-11.5-3.7-11.5-8 0-5.4.2-33 .2-55.3 0-15.6-5.2-25.5-11.3-30.7 37-4.1 76-9.2 76-73.1 0-18.2-6.5-27.3-17.1-39 1.7-4.3 7.4-22-1.7-45-13.9-4.3-45.7 17.9-45.7 17.9-13.2-3.7-27.5-5.6-41.6-5.6-14.1 0-28.4 1.9-41.6 5.6 0 0-31.8-22.2-45.7-17.9-9.1 22.9-3.5 40.6-1.7 45-10.6 11.7-15.6 20.8-15.6 39 0 63.6 37.3 69 74.3 73.1-4.8 4.3-9.1 11.7-10.6 22.3-9.5 4.3-33.8 11.7-48.3-13.9-9.1-15.8-25.5-17.1-25.5-17.1-16.2-.2-1.1 10.2-1.1 10.2 10.8 5 18.4 24.2 18.4 24.2 9.7 29.7 56.1 19.7 56.1 19.7 0 13.9.2 36.5.2 40.6 0 4.3-3 9.5-11.5 8-66-22.1-112.2-84.9-112.2-158.3 0-91.8 70.2-161.5 162-161.5S388 165.6 388 257.4c.1 73.4-44.7 136.3-110.7 158.3zm-98.1-61.1c-1.9.4-3.7-.4-3.9-1.7-.2-1.5 1.1-2.8 3-3.2 1.9-.2 3.7.6 3.9 1.9.3 1.3-1 2.6-3 3zm-9.5-.9c0 1.3-1.5 2.4-3.5 2.4-2.2.2-3.7-.9-3.7-2.4 0-1.3 1.5-2.4 3.5-2.4 1.9-.2 3.7.9 3.7 2.4zm-13.7-1.1c-.4 1.3-2.4 1.9-4.1 1.3-1.9-.4-3.2-1.9-2.8-3.2.4-1.3 2.4-1.9 4.1-1.5 2 .6 3.3 2.1 2.8 3.4zm-12.3-5.4c-.9 1.1-2.8.9-4.3-.6-1.5-1.3-1.9-3.2-.9-4.1.9-1.1 2.8-.9 4.3.6 1.3 1.3 1.8 3.3.9 4.1zm-9.1-9.1c-.9.6-2.6 0-3.7-1.5s-1.1-3.2 0-3.9c1.1-.9 2.8-.2 3.7 1.3 1.1 1.5 1.1 3.3 0 4.1zm-6.5-9.7c-.9.9-2.4.4-3.5-.6-1.1-1.3-1.3-2.8-.4-3.5.9-.9 2.4-.4 3.5.6 1.1 1.3 1.3 2.8.4 3.5zm-6.7-7.4c-.4.9-1.7 1.1-2.8.4-1.3-.6-1.9-1.7-1.5-2.6.4-.6 1.5-.9 2.8-.4 1.3.7 1.9 1.8 1.5 2.6z" />
- </svg>
- </a>
- {{ end }}
-
- {{ if .Site.Params.linkedin }}
- <a class="text-white" href="{{ .Site.Params.linkedin }}" aria-label="linkedin">
- <svg width="1.1em" height="1.1em" fill="currentColor" xmlns="http://www.w3.org/2000/svg"
- viewBox="0 0 448 512">
- <path
- d="M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z" />
- </svg>
- </a>
- {{ end }}
-
- {{ if .Site.Params.twitter }}
- <a class="text-white" href="{{ .Site.Params.twitter }}" aria-label="twitter">
- <svg width="1.1em" height="1.1em" fill="currentColor" xmlns="http://www.w3.org/2000/svg"
- viewBox="0 0 448 512">
- <path
- d="M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-48.9 158.8c.2 2.8.2 5.7.2 8.5 0 86.7-66 186.6-186.6 186.6-37.2 0-71.7-10.8-100.7-29.4 5.3.6 10.4.8 15.8.8 30.7 0 58.9-10.4 81.4-28-28.8-.6-53-19.5-61.3-45.5 10.1 1.5 19.2 1.5 29.6-1.2-30-6.1-52.5-32.5-52.5-64.4v-.8c8.7 4.9 18.9 7.9 29.6 8.3a65.447 65.447 0 0 1-29.2-54.6c0-12.2 3.2-23.4 8.9-33.1 32.3 39.8 80.8 65.8 135.2 68.6-9.3-44.5 24-80.6 64-80.6 18.9 0 35.9 7.9 47.9 20.7 14.8-2.8 29-8.3 41.6-15.8-4.9 15.2-15.2 28-28.8 36.1 13.2-1.4 26-5.1 37.8-10.2-8.9 13.1-20.1 24.7-32.9 34z" />
- </svg>
- </a>
- {{ end }}
-
- {{ if .Site.Params.instagram }}
- <a class="text-white" href="{{ .Site.Params.instagram }}" aria-label="instagram">
- <svg width="1.1em" height="1.1em" fill="currentColor" xmlns="http://www.w3.org/2000/svg"
- viewBox="0 0 448 512">
- <path
- d="M224,202.66A53.34,53.34,0,1,0,277.36,256,53.38,53.38,0,0,0,224,202.66Zm124.71-41a54,54,0,0,0-30.41-30.41c-21-8.29-71-6.43-94.3-6.43s-73.25-1.93-94.31,6.43a54,54,0,0,0-30.41,30.41c-8.28,21-6.43,71.05-6.43,94.33S91,329.26,99.32,350.33a54,54,0,0,0,30.41,30.41c21,8.29,71,6.43,94.31,6.43s73.24,1.93,94.3-6.43a54,54,0,0,0,30.41-30.41c8.35-21,6.43-71.05,6.43-94.33S357.1,182.74,348.75,161.67ZM224,338a82,82,0,1,1,82-82A81.9,81.9,0,0,1,224,338Zm85.38-148.3a19.14,19.14,0,1,1,19.13-19.14A19.1,19.1,0,0,1,309.42,189.74ZM400,32H48A48,48,0,0,0,0,80V432a48,48,0,0,0,48,48H400a48,48,0,0,0,48-48V80A48,48,0,0,0,400,32ZM382.88,322c-1.29,25.63-7.14,48.34-25.85,67s-41.4,24.63-67,25.85c-26.41,1.49-105.59,1.49-132,0-25.63-1.29-48.26-7.15-67-25.85s-24.63-41.42-25.85-67c-1.49-26.42-1.49-105.61,0-132,1.29-25.63,7.07-48.34,25.85-67s41.47-24.56,67-25.78c26.41-1.49,105.59-1.49,132,0,25.63,1.29,48.33,7.15,67,25.85s24.63,41.42,25.85,67.05C384.37,216.44,384.37,295.56,382.88,322Z" />
- </svg>
- </a>
- {{ end }}
- </div>
- </div>
-
- <!-- image -->
- <div class="row profile text-center">
- <br>
- <img src="{{ .Site.Params.profile | default " /images/v1/avatar.webp"}}" width="150px"
- class="rounded-circle img-fluid" alt="{{ .Site.Params.name }}">
- </div>
- </div>
-
- <div class="col-lg-3 home-content d-none d-md-block" style="background-image: url('{{ $backimg | absURL }}');">
- </div>
- </div>
- <div class="row know-more ">
- <div class="container p-3 rounded text-center">
- <a href="#about" class="text-info">
- know more
- <br>
- <svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-chevron-down" fill="currentColor"
- xmlns="http://www.w3.org/2000/svg">
- <path fill-rule="evenodd"
- d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z" />
- </svg>
- </a>
- </div>
- </div>
- </div>
- </div>
-</section> \ No newline at end of file
diff --git a/layouts/partials/sections/v1/projects.html b/layouts/partials/sections/v1/projects.html
deleted file mode 100644
index 6c8b2d5..0000000
--- a/layouts/partials/sections/v1/projects.html
+++ /dev/null
@@ -1,46 +0,0 @@
-<section>
- <div class="projects p-3" id="projects">
- <div class="container">
- <div class="project-heading text-center text-white container pb-3">Projects</div>
- <div class="pt-5 pb-5">
- <div class="container">
- <div class="row">
- <div class="col-12">
- <div class="carousel-inner">
- <div class="carousel-item active">
- <div class="row justify-content-center">
- {{ range .Site.Params.projects }}
- <div class="col-md-4 mb-3">
- <div class="card">
- <img class="img-fluid" src="{{ .image }}" alt="{{ .title }}">
- <div class="card-body">
- <div class="card-title">{{ .title }}</div>
- <p class="card-text">{{ .description}}</p>
-
- {{ if .secoundarylink}}
- <a href="{{ .secoundaryurl }}" class="btn btn-info" aria-label="{{ .secoundaryurlname }}">{{ .secoundaryurlname }}</a>
- {{ end }}
-
- {{ if .sourceurl }}
- <a class="text-dark" href="{{ .sourceurl }}" aria-label="github">
- <svg width="2em" height="2em" fill="currentColor"
- xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512">
- <path
- d="M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM277.3 415.7c-8.4 1.5-11.5-3.7-11.5-8 0-5.4.2-33 .2-55.3 0-15.6-5.2-25.5-11.3-30.7 37-4.1 76-9.2 76-73.1 0-18.2-6.5-27.3-17.1-39 1.7-4.3 7.4-22-1.7-45-13.9-4.3-45.7 17.9-45.7 17.9-13.2-3.7-27.5-5.6-41.6-5.6-14.1 0-28.4 1.9-41.6 5.6 0 0-31.8-22.2-45.7-17.9-9.1 22.9-3.5 40.6-1.7 45-10.6 11.7-15.6 20.8-15.6 39 0 63.6 37.3 69 74.3 73.1-4.8 4.3-9.1 11.7-10.6 22.3-9.5 4.3-33.8 11.7-48.3-13.9-9.1-15.8-25.5-17.1-25.5-17.1-16.2-.2-1.1 10.2-1.1 10.2 10.8 5 18.4 24.2 18.4 24.2 9.7 29.7 56.1 19.7 56.1 19.7 0 13.9.2 36.5.2 40.6 0 4.3-3 9.5-11.5 8-66-22.1-112.2-84.9-112.2-158.3 0-91.8 70.2-161.5 162-161.5S388 165.6 388 257.4c.1 73.4-44.7 136.3-110.7 158.3zm-98.1-61.1c-1.9.4-3.7-.4-3.9-1.7-.2-1.5 1.1-2.8 3-3.2 1.9-.2 3.7.6 3.9 1.9.3 1.3-1 2.6-3 3zm-9.5-.9c0 1.3-1.5 2.4-3.5 2.4-2.2.2-3.7-.9-3.7-2.4 0-1.3 1.5-2.4 3.5-2.4 1.9-.2 3.7.9 3.7 2.4zm-13.7-1.1c-.4 1.3-2.4 1.9-4.1 1.3-1.9-.4-3.2-1.9-2.8-3.2.4-1.3 2.4-1.9 4.1-1.5 2 .6 3.3 2.1 2.8 3.4zm-12.3-5.4c-.9 1.1-2.8.9-4.3-.6-1.5-1.3-1.9-3.2-.9-4.1.9-1.1 2.8-.9 4.3.6 1.3 1.3 1.8 3.3.9 4.1zm-9.1-9.1c-.9.6-2.6 0-3.7-1.5s-1.1-3.2 0-3.9c1.1-.9 2.8-.2 3.7 1.3 1.1 1.5 1.1 3.3 0 4.1zm-6.5-9.7c-.9.9-2.4.4-3.5-.6-1.1-1.3-1.3-2.8-.4-3.5.9-.9 2.4-.4 3.5.6 1.1 1.3 1.3 2.8.4 3.5zm-6.7-7.4c-.4.9-1.7 1.1-2.8.4-1.3-.6-1.9-1.7-1.5-2.6.4-.6 1.5-.9 2.8-.4 1.3.7 1.9 1.8 1.5 2.6z" />
- </svg>
- </a>
- {{ end }}
- </div>
- </div>
- </div>
- {{ end }}
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
-</section> \ No newline at end of file
diff --git a/layouts/partials/sections/v1/scripts.html b/layouts/partials/sections/v1/scripts.html
deleted file mode 100644
index cb2bf0d..0000000
--- a/layouts/partials/sections/v1/scripts.html
+++ /dev/null
@@ -1,3 +0,0 @@
-<!-- javascripts -->
-<script src="/js/jquery.slim.min.js"></script>
-<script src="/js/bootstrap.min.js"></script> \ No newline at end of file
diff --git a/layouts/partials/sections/v2/about.html b/layouts/partials/sections/v2/about.html
deleted file mode 100644
index a41440f..0000000
--- a/layouts/partials/sections/v2/about.html
+++ /dev/null
@@ -1,133 +0,0 @@
-<section>
- <div class="about pt-4">
- <div class="container">
-
- <div class="row justify-content-center ">
- <div class="col-lg-3 pt-3 text-center">
- {{ if .Site.Params.profile_image }}
- <img src="{{ .Site.Params.profile_image }}" width="200" height="200" alt="{{ .Site.Params.name }}" class="rounded">
- {{ end }}
- <div class="about-me jop font-weight-bold text-secondary">
- {{ if .Site.Params.name }}
- {{ .Site.Params.name }}
- {{ end }}
- </div>
- </div>
- </div>
-
- {{ if .Site.Params.socialicontop }}
- <div class="text-center">
- {{ if .Site.Params.github }}
- <span class="px-1">
- <a class="text-dark" href="{{ .Site.Params.github }}" aria-label="github">
- <svg xmlns="http://www.w3.org/2000/svg" width="2.7em" height="2.7em" viewBox="0 0 1792 1792">
- <path
- d="M522 1352q-8 9-20-3-13-11-4-19 8-9 20 3 12 11 4 19zm-42-61q9 12 0 19-8 6-17-7t0-18q9-7 17 6zm-61-60q-5 7-13 2-10-5-7-12 3-5 13-2 10 5 7 12zm31 34q-6 7-16-3-9-11-2-16 6-6 16 3 9 11 2 16zm129 112q-4 12-19 6-17-4-13-15t19-7q16 5 13 16zm63 5q0 11-16 11-17 2-17-11 0-11 16-11 17-2 17 11zm58-10q2 10-14 14t-18-8 14-15q16-2 18 9zm964-956v960q0 119-84.5 203.5t-203.5 84.5h-224q-16 0-24.5-1t-19.5-5-16-14.5-5-27.5v-239q0-97-52-142 57-6 102.5-18t94-39 81-66.5 53-105 20.5-150.5q0-121-79-206 37-91-8-204-28-9-81 11t-92 44l-38 24q-93-26-192-26t-192 26q-16-11-42.5-27t-83.5-38.5-86-13.5q-44 113-7 204-79 85-79 206 0 85 20.5 150t52.5 105 80.5 67 94 39 102.5 18q-40 36-49 103-21 10-45 15t-57 5-65.5-21.5-55.5-62.5q-19-32-48.5-52t-49.5-24l-20-3q-21 0-29 4.5t-5 11.5 9 14 13 12l7 5q22 10 43.5 38t31.5 51l10 23q13 38 44 61.5t67 30 69.5 7 55.5-3.5l23-4q0 38 .5 103t.5 68q0 22-11 33.5t-22 13-33 1.5h-224q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" />
-
- <metadata>
- <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:dc="http://purl.org/dc/elements/1.1/">
- <rdf:Description about="https://iconscout.com/legal#licenses" dc:title="Github, Online, Project, Hosting, Square" dc:description="Github, Online, Project, Hosting, Square" dc:publisher="Iconscout" dc:date="2016-12-14"
- dc:format="image/svg+xml" dc:language="en">
- <dc:creator>
- <rdf:Bag>
- <rdf:li>Font Awesome</rdf:li>
- </rdf:Bag>
- </dc:creator>
- </rdf:Description>
- </rdf:RDF>
- </metadata>
- </svg>
- </a>
- </span>
- {{ end }}
-
- {{ if .Site.Params.linkedin }}
- <span class="px-1">
- <a class="text-white" href="{{ .Site.Params.linkedin }}" aria-label="linkedin">
- <svg xmlns="http://www.w3.org/2000/svg" width='2.4em' height='2.4em' fill="#fff" aria-label="LinkedIn" viewBox="0 0 512 512">
- <rect width="512" height="512" fill="#0077b5" rx="15%" />
- <circle cx="142" cy="138" r="37" />
- <path stroke="#fff" stroke-width="66" d="M244 194v198M142 194v198" />
- <path d="M276 282c0-20 13-40 36-40 24 0 33 18 33 45v105h66V279c0-61-32-89-76-89-34 0-51 19-59 32" />
- </svg>
- </a>
- </span>
- {{ end }}
-
- {{ if .Site.Params.twitter }}
- <a class="text-info" href="{{ .Site.Params.twitter }}" aria-label="twitter">
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="48px" height="48px">
- <path fill="#03a9f4" d="M42,37c0,2.762-2.239,5-5,5H11c-2.762,0-5-2.238-5-5V11c0-2.762,2.238-5,5-5h26c2.761,0,5,2.238,5,5 V37z" />
- <path fill="#fff"
- d="M36,17.12c-0.882,0.391-1.999,0.758-3,0.88c1.018-0.604,2.633-1.862,3-3 c-0.951,0.559-2.671,1.156-3.793,1.372C31.311,15.422,30.033,15,28.617,15C25.897,15,24,17.305,24,20v2c-4,0-7.9-3.047-10.327-6 c-0.427,0.721-0.667,1.565-0.667,2.457c0,1.819,1.671,3.665,2.994,4.543c-0.807-0.025-2.335-0.641-3-1c0,0.016,0,0.036,0,0.057 c0,2.367,1.661,3.974,3.912,4.422C16.501,26.592,16,27,14.072,27c0.626,1.935,3.773,2.958,5.928,3c-1.686,1.307-4.692,2-7,2 c-0.399,0-0.615,0.022-1-0.023C14.178,33.357,17.22,34,20,34c9.057,0,14-6.918,14-13.37c0-0.212-0.007-0.922-0.018-1.13 C34.95,18.818,35.342,18.104,36,17.12" />
- </svg>
- </a>
- {{ end }}
-
- {{ if .Site.Params.instagram }}
- <a class="text-danger" href="{{ .Site.Params.instagram }}" aria-label="instagram">
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="48px" height="48px">
- <radialGradient id="yOrnnhliCrdS2gy~4tD8ma" cx="19.38" cy="42.035" r="44.899" gradientUnits="userSpaceOnUse">
- <stop offset="0" stop-color="#fd5" />
- <stop offset=".328" stop-color="#ff543f" />
- <stop offset=".348" stop-color="#fc5245" />
- <stop offset=".504" stop-color="#e64771" />
- <stop offset=".643" stop-color="#d53e91" />
- <stop offset=".761" stop-color="#cc39a4" />
- <stop offset=".841" stop-color="#c837ab" />
- </radialGradient>
- <path fill="url(#yOrnnhliCrdS2gy~4tD8ma)"
- d="M34.017,41.99l-20,0.019c-4.4,0.004-8.003-3.592-8.008-7.992l-0.019-20 c-0.004-4.4,3.592-8.003,7.992-8.008l20-0.019c4.4-0.004,8.003,3.592,8.008,7.992l0.019,20 C42.014,38.383,38.417,41.986,34.017,41.99z" />
- <radialGradient id="yOrnnhliCrdS2gy~4tD8mb" cx="11.786" cy="5.54" r="29.813" gradientTransform="matrix(1 0 0 .6663 0 1.849)" gradientUnits="userSpaceOnUse">
- <stop offset="0" stop-color="#4168c9" />
- <stop offset=".999" stop-color="#4168c9" stop-opacity="0" />
- </radialGradient>
- <path fill="url(#yOrnnhliCrdS2gy~4tD8mb)"
- d="M34.017,41.99l-20,0.019c-4.4,0.004-8.003-3.592-8.008-7.992l-0.019-20 c-0.004-4.4,3.592-8.003,7.992-8.008l20-0.019c4.4-0.004,8.003,3.592,8.008,7.992l0.019,20 C42.014,38.383,38.417,41.986,34.017,41.99z" />
- <path fill="#fff" d="M24,31c-3.859,0-7-3.14-7-7s3.141-7,7-7s7,3.14,7,7S27.859,31,24,31z M24,19c-2.757,0-5,2.243-5,5 s2.243,5,5,5s5-2.243,5-5S26.757,19,24,19z" />
- <circle cx="31.5" cy="16.5" r="1.5" fill="#fff" />
- <path fill="#fff" d="M30,37H18c-3.859,0-7-3.14-7-7V18c0-3.86,3.141-7,7-7h12c3.859,0,7,3.14,7,7v12 C37,33.86,33.859,37,30,37z M18,13c-2.757,0-5,2.243-5,5v12c0,2.757,2.243,5,5,5h12c2.757,0,5-2.243,5-5V18c0-2.757-2.243-5-5-5H18z" />
- </svg>
- </a>
- {{ end }}
-
- {{ if .Site.Params.facebook }}
- <a class="text-info" href="{{ .Site.Params.facebook }}" aria-label="facebook">
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="48px" height="48px">
- <path fill="#3F51B5" d="M42,37c0,2.762-2.238,5-5,5H11c-2.761,0-5-2.238-5-5V11c0-2.762,2.239-5,5-5h26c2.762,0,5,2.238,5,5V37z" />
- <path fill="#FFF" d="M34.368,25H31v13h-5V25h-3v-4h3v-2.41c0.002-3.508,1.459-5.59,5.592-5.59H35v4h-2.287C31.104,17,31,17.6,31,18.723V21h4L34.368,25z" />
- </svg>
- </a>
- {{ end }}
- </div>
- {{ end }}
-
- <div class="row justify-content-center ">
- <div class="col-md-8 text-center">
- <div class="about-content text-dark p-3">
- {{ if .Site.Params.descripe_l1_person }}
- {{ .Site.Params.descripe_l1_person | markdownify }}
- {{ end }}
-
- {{ if .Site.Params.descripe_l2_person }}
- <br><br>
- {{ .Site.Params.descripe_l2_person | markdownify }}
- {{ end }}
- </div>
- <div class="social px-3 text-center pb-4">
- {{ if .Site.Params.useresume }}
- <a href={{ .Site.Params.resumelink | default "#" }} class="btn btn-outline-danger" role="button" aria-pressed="true">
- {{ if .Site.Params.customname }}
- {{ .Site.Params.customname }}
- {{ else }}
- Resume
- {{ end }}
-
- </a>
- {{ end }}
- </div>
- </div>
- </div>
- </div>
- </div>
-</section>
diff --git a/layouts/partials/sections/v2/do_things.html b/layouts/partials/sections/v2/do_things.html
deleted file mode 100644
index 3fcc8fa..0000000
--- a/layouts/partials/sections/v2/do_things.html
+++ /dev/null
@@ -1,45 +0,0 @@
-{{ if .Site.Params.usedothings }}
-<section>
- <div class="do-things text-center" id="do-things">
- <div class="container">
- <div class="things-i-do text-primary py-3 font-weight-bold">
- Things I do
- </div>
-
- <div class="do-things-card">
- <div class="row pb-2 justify-content-center">
- {{ range .Site.Params.Things }}
- {{ if .url }}
- <div class="col-lg-3 col-md-4">
- <a id="nothing" href={{ .url | default "#" }} class="">
- <div class="things shadow rounded p-4 my-2 mb-4 card btn-outline-primary">
- <i class="{{ .logo }} fa-3x" width="3em" height="3em"></i>
- <div class="p-2 font-weight-bold">
- {{ .title }}
- </div>
- <div class="py-4 things-text">
- {{ .description }}
- </div>
- </div>
- </a>
- </div>
- {{ else }}
- <div class="col-lg-3 col-md-4">
- <div class="things shadow rounded p-4 my-2 mb-4 card btn-outline-primary">
- <i class="{{ .logo }} fa-3x" width="3em" height="3em"></i>
- <div class="p-2 font-weight-bold">
- {{ .title }}
- </div>
- <div class="py-4 things-text">
- {{ .description }}
- </div>
- </div>
- </div>
- {{ end }}
- {{ end }}
- </div>
- </div>
- </div>
- </div>
-</section>
-{{ end }}
diff --git a/layouts/partials/sections/v2/footer.html b/layouts/partials/sections/v2/footer.html
deleted file mode 100644
index 0f8545d..0000000
--- a/layouts/partials/sections/v2/footer.html
+++ /dev/null
@@ -1,144 +0,0 @@
-<footer>
- <!-- recent posts -->
- <div class="news container py-3">
- {{ if .Site.Params.recentposts }}
- <div class="h3 text-center text-light py-3 font-weight-bold">Recent posts</div>
- <div class="row justify-content-center">
- {{ range ( where .Site.RegularPages "Type" "blog" | first 3 ) }}
- <div class="col-lg-4 col-md-6 pt-2">
- <a href="{{ .RelPermalink }}" class="post-card-link">
- <div class="card px-2 h-100">
- <div class="card-head py-3">
- <h5 class="card-title font-weight-bold px-2">{{ .Title }}</h5>
- <p class="card-text px-2"> {{ .Summary | truncate 300}}</p>
- </div>
- <div class="mt-auto card-footer">
- <span class="float-left">{{ .Date.Format "January 2, 2006" }}</span>
- <a href="{{ .RelPermalink }}" class="float-right btn btn-outline-info btn-sm">Read</a>
- </div>
- </div>
- </a>
- </div>
- {{ end }}
- </div>
- {{ end }}
- </div>
- {{ if .Site.Params.socialiconfooter }}
-
- <div class="text-center">
- {{ if .Site.Params.github }}
- <span class="px-1">
- <a class="text-dark" href="{{ .Site.Params.github }}" aria-label="github">
- <svg xmlns="http://www.w3.org/2000/svg" width="2.7em" height="2.7em" viewBox="0 0 1792 1792">
- <path
- d="M522 1352q-8 9-20-3-13-11-4-19 8-9 20 3 12 11 4 19zm-42-61q9 12 0 19-8 6-17-7t0-18q9-7 17 6zm-61-60q-5 7-13 2-10-5-7-12 3-5 13-2 10 5 7 12zm31 34q-6 7-16-3-9-11-2-16 6-6 16 3 9 11 2 16zm129 112q-4 12-19 6-17-4-13-15t19-7q16 5 13 16zm63 5q0 11-16 11-17 2-17-11 0-11 16-11 17-2 17 11zm58-10q2 10-14 14t-18-8 14-15q16-2 18 9zm964-956v960q0 119-84.5 203.5t-203.5 84.5h-224q-16 0-24.5-1t-19.5-5-16-14.5-5-27.5v-239q0-97-52-142 57-6 102.5-18t94-39 81-66.5 53-105 20.5-150.5q0-121-79-206 37-91-8-204-28-9-81 11t-92 44l-38 24q-93-26-192-26t-192 26q-16-11-42.5-27t-83.5-38.5-86-13.5q-44 113-7 204-79 85-79 206 0 85 20.5 150t52.5 105 80.5 67 94 39 102.5 18q-40 36-49 103-21 10-45 15t-57 5-65.5-21.5-55.5-62.5q-19-32-48.5-52t-49.5-24l-20-3q-21 0-29 4.5t-5 11.5 9 14 13 12l7 5q22 10 43.5 38t31.5 51l10 23q13 38 44 61.5t67 30 69.5 7 55.5-3.5l23-4q0 38 .5 103t.5 68q0 22-11 33.5t-22 13-33 1.5h-224q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" />
-
- <metadata>
- <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:dc="http://purl.org/dc/elements/1.1/">
- <rdf:Description about="https://iconscout.com/legal#licenses"
- dc:title="Github, Online, Project, Hosting, Square"
- dc:description="Github, Online, Project, Hosting, Square" dc:publisher="Iconscout" dc:date="2016-12-14"
- dc:format="image/svg+xml" dc:language="en">
- <dc:creator>
- <rdf:Bag>
- <rdf:li>Font Awesome</rdf:li>
- </rdf:Bag>
- </dc:creator>
- </rdf:Description>
- </rdf:RDF>
- </metadata>
- </svg>
- </a>
- </span>
- {{ end }}
-
- {{ if .Site.Params.linkedin }}
- <span class="px-1">
- <a class="text-white" href="{{ .Site.Params.linkedin }}" aria-label="linkedin">
- <svg xmlns="http://www.w3.org/2000/svg" width='2.4em' height='2.4em' fill="#fff" aria-label="LinkedIn"
- viewBox="0 0 512 512">
- <rect width="512" height="512" fill="#0077b5" rx="15%" />
- <circle cx="142" cy="138" r="37" />
- <path stroke="#fff" stroke-width="66" d="M244 194v198M142 194v198" />
- <path d="M276 282c0-20 13-40 36-40 24 0 33 18 33 45v105h66V279c0-61-32-89-76-89-34 0-51 19-59 32" />
- </svg>
- </a>
- </span>
- {{ end }}
-
- {{ if .Site.Params.twitter }}
- <a class="text-info" href="{{ .Site.Params.twitter }}" aria-label="twitter">
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="48px" height="48px">
- <path fill="#03a9f4"
- d="M42,37c0,2.762-2.239,5-5,5H11c-2.762,0-5-2.238-5-5V11c0-2.762,2.238-5,5-5h26c2.761,0,5,2.238,5,5 V37z" />
- <path fill="#fff"
- d="M36,17.12c-0.882,0.391-1.999,0.758-3,0.88c1.018-0.604,2.633-1.862,3-3 c-0.951,0.559-2.671,1.156-3.793,1.372C31.311,15.422,30.033,15,28.617,15C25.897,15,24,17.305,24,20v2c-4,0-7.9-3.047-10.327-6 c-0.427,0.721-0.667,1.565-0.667,2.457c0,1.819,1.671,3.665,2.994,4.543c-0.807-0.025-2.335-0.641-3-1c0,0.016,0,0.036,0,0.057 c0,2.367,1.661,3.974,3.912,4.422C16.501,26.592,16,27,14.072,27c0.626,1.935,3.773,2.958,5.928,3c-1.686,1.307-4.692,2-7,2 c-0.399,0-0.615,0.022-1-0.023C14.178,33.357,17.22,34,20,34c9.057,0,14-6.918,14-13.37c0-0.212-0.007-0.922-0.018-1.13 C34.95,18.818,35.342,18.104,36,17.12" />
- </svg>
- </a>
- {{ end }}
-
- {{ if .Site.Params.instagram }}
- <a class="text-danger" href="{{ .Site.Params.instagram }}" aria-label="instagram">
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="48px" height="48px">
- <radialGradient id="yOrnnhliCrdS2gy~4tD8ma" cx="19.38" cy="42.035" r="44.899" gradientUnits="userSpaceOnUse">
- <stop offset="0" stop-color="#fd5" />
- <stop offset=".328" stop-color="#ff543f" />
- <stop offset=".348" stop-color="#fc5245" />
- <stop offset=".504" stop-color="#e64771" />
- <stop offset=".643" stop-color="#d53e91" />
- <stop offset=".761" stop-color="#cc39a4" />
- <stop offset=".841" stop-color="#c837ab" />
- </radialGradient>
- <path fill="url(#yOrnnhliCrdS2gy~4tD8ma)"
- d="M34.017,41.99l-20,0.019c-4.4,0.004-8.003-3.592-8.008-7.992l-0.019-20 c-0.004-4.4,3.592-8.003,7.992-8.008l20-0.019c4.4-0.004,8.003,3.592,8.008,7.992l0.019,20 C42.014,38.383,38.417,41.986,34.017,41.99z" />
- <radialGradient id="yOrnnhliCrdS2gy~4tD8mb" cx="11.786" cy="5.54" r="29.813"
- gradientTransform="matrix(1 0 0 .6663 0 1.849)" gradientUnits="userSpaceOnUse">
- <stop offset="0" stop-color="#4168c9" />
- <stop offset=".999" stop-color="#4168c9" stop-opacity="0" />
- </radialGradient>
- <path fill="url(#yOrnnhliCrdS2gy~4tD8mb)"
- d="M34.017,41.99l-20,0.019c-4.4,0.004-8.003-3.592-8.008-7.992l-0.019-20 c-0.004-4.4,3.592-8.003,7.992-8.008l20-0.019c4.4-0.004,8.003,3.592,8.008,7.992l0.019,20 C42.014,38.383,38.417,41.986,34.017,41.99z" />
- <path fill="#fff"
- d="M24,31c-3.859,0-7-3.14-7-7s3.141-7,7-7s7,3.14,7,7S27.859,31,24,31z M24,19c-2.757,0-5,2.243-5,5 s2.243,5,5,5s5-2.243,5-5S26.757,19,24,19z" />
- <circle cx="31.5" cy="16.5" r="1.5" fill="#fff" />
- <path fill="#fff"
- d="M30,37H18c-3.859,0-7-3.14-7-7V18c0-3.86,3.141-7,7-7h12c3.859,0,7,3.14,7,7v12 C37,33.86,33.859,37,30,37z M18,13c-2.757,0-5,2.243-5,5v12c0,2.757,2.243,5,5,5h12c2.757,0,5-2.243,5-5V18c0-2.757-2.243-5-5-5H18z" />
- </svg>
- </a>
- {{ end }}
-
- {{ if .Site.Params.facebook }}
- <a class="text-info" href="{{ .Site.Params.facebook }}" aria-label="facebook">
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="48px" height="48px">
- <path fill="#3F51B5"
- d="M42,37c0,2.762-2.238,5-5,5H11c-2.761,0-5-2.238-5-5V11c0-2.762,2.239-5,5-5h26c2.762,0,5,2.238,5,5V37z" />
- <path fill="#FFF"
- d="M34.368,25H31v13h-5V25h-3v-4h3v-2.41c0.002-3.508,1.459-5.59,5.592-5.59H35v4h-2.287C31.104,17,31,17.6,31,18.723V21h4L34.368,25z" />
- </svg>
- </a>
- {{ end }}
- </div>
- {{ end }}
- <div class="container bg-transparent py-4">
- <div class="row justify-content-center">
- <div class="col-md-4 text-center order-2 order-lg-1 order-md-1">
- <div class="pb-2">
- <a href="{{ .Site.BaseURL }}">
- <img alt="Footer logo" src="{{ .Site.Params.favicon | default " /images/favicon.png"}}" height="40px"
- width="40px">
- </a>
- </div>
- &copy; {{ .Site.Params.copyright }} All Rights Reserved
- <div class="text-secondary">
- <div>
- Made with &#10084; and
- <a href="https://github.com/gurusabarish/hugo-profile" target="_blank">Hugo profile</a>
- | Designed and Developed by
- <a href="https://www.linkedin.com/in/gurusabarish/" target="_blank">Gurusabarish</a>
- </div>
- </div>
- </div>
- </div>
- </div>
-</footer> \ No newline at end of file
diff --git a/layouts/partials/sections/v2/head.html b/layouts/partials/sections/v2/head.html
deleted file mode 100644
index c8fd0b0..0000000
--- a/layouts/partials/sections/v2/head.html
+++ /dev/null
@@ -1,16 +0,0 @@
-<meta charset="UTF-8">
-<meta name="viewport" content="width=device-width, initial-scale=1.0">
-<meta http-equiv="X-UA-Compatible" content="ie=edge">
-<link rel="icon" href="{{ .Site.Params.favicon | default " /images/favicon.png"}}" type="image/gif">
-
-<!-- stylesheets -->
-<link rel="stylesheet" href="/css/bootstrap.min.css" media="all">
-<link rel="stylesheet" href="/css/all.min.css" media="all">
-<link rel="stylesheet" href="/css/fontawesome.min.css" media="all">
-<link rel="stylesheet" href="/css/v2/v2.css" media="all">
-
-
-<!-- Custom Styles -->
-{{ if .Site.Params.customCSS }}
-<link rel="stylesheet" href="/style.css">
-{{ end }} \ No newline at end of file
diff --git a/layouts/partials/sections/v2/header.html b/layouts/partials/sections/v2/header.html
deleted file mode 100644
index 780e713..0000000
--- a/layouts/partials/sections/v2/header.html
+++ /dev/null
@@ -1,26 +0,0 @@
-<nav class="navbar navbar-expand-lg navbar-light shadow-sm bg-gradient-primary">
- <div class="container">
- <a class="navbar-brand font-weight-bold" href="{{ .Site.BaseURL | relURL }}">
- {{ if .Site.Params.favicon }}
- <img src="{{ .Site.Params.favicon }}" width="30" height="30" class="d-inline-block align-top">
- {{ .Site.Title }}
- {{ else }}
- {{ .Site.Title }}
- {{ end }}
- </a>
- <button class="navbar-toggler border-0" type="button" data-toggle="collapse" data-target="#navbarNavDropdown"
- aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation">
- <span class="navbar-toggler-icon"></span>
- </button>
-
- <div class="collapse navbar-collapse" id="navbarNavDropdown">
- <ul class="navbar-nav ml-auto text-center">
- {{ range site.Params.customMenus }}
- <li class="nav-item navbar-text">
- <a class="nav-link" href="{{.Url}}" aria-label="{{ .name }}">{{ .name }}</a>
- </li>
- {{ end }}
- </ul>
- </div>
- </div>
-</nav> \ No newline at end of file
diff --git a/layouts/partials/sections/v2/scripts.html b/layouts/partials/sections/v2/scripts.html
deleted file mode 100644
index cb2bf0d..0000000
--- a/layouts/partials/sections/v2/scripts.html
+++ /dev/null
@@ -1,3 +0,0 @@
-<!-- javascripts -->
-<script src="/js/jquery.slim.min.js"></script>
-<script src="/js/bootstrap.min.js"></script> \ No newline at end of file
diff --git a/layouts/partials/sections/v3/about.html b/layouts/partials/sections/v3/about.html
deleted file mode 100644
index dab93f3..0000000
--- a/layouts/partials/sections/v3/about.html
+++ /dev/null
@@ -1,43 +0,0 @@
-<div id="about" class="about-backdark about-back">
- <section class="pt-5">
- <div class="container-fluid">
- <div class="text-dark text-center h3">About Me</div>
- <div class="row justify-content-center about">
- <div class="col-md-6 about-content">
- <div data-aos="zoom-in-up" data-aos-offset="50" data-aos-delay="50" data-aos-once="true"
- data-aos-duration="900">
- <div class="px-2">
- {{ .Site.Params.descripe_l1_person | markdownify }}
- <br />
- <br />
- {{ .Site.Params.descripe_l2_person | markdownify }}
- </div>
- {{ if .Site.Params.email }}
- <div class="py-3 pl-2">
- <a href="mailto:{{ .Site.Params.email }}?subject=Say hi!" target="_blank"
- class="contact-btn btn text-muted">
- {{ .Site.Params.getintouch | default "Get in Touch" }}
- </a>
- </div>
- {{ end }}
- </div>
- </div>
- <div class="col-md-5 about-skill">
- <div data-aos="zoom-in-down" data-aos-offset="50" data-aos-delay="50" data-aos-once="true"
- data-aos-duration="1000">
- <div class="text-secondary text-center h4">Skills</div>
- {{ range .Site.Params.skills }}
- <div>
- <div>{{ .name }}</div>
- <div class="progress mb-4">
- <div class="progress-bar" role="progressbar" style="width: {{ .percentage }}%;" aria-valuemin="0"
- aria-valuemax="100"></div>
- </div>
- </div>
- {{ end }}
- </div>
- </div>
- </div>
- </div>
- </section>
-</div> \ No newline at end of file
diff --git a/layouts/partials/sections/v3/achievements.html b/layouts/partials/sections/v3/achievements.html
deleted file mode 100644
index dd8e8ed..0000000
--- a/layouts/partials/sections/v3/achievements.html
+++ /dev/null
@@ -1,37 +0,0 @@
-{{ $img:= "./images/v1/background.png" }}
-
-<section id="achievements" class="py-5 achievements-backdark achievements-back">
- <div class="container-fluid">
- <div class="text-dark text-center h3">Achievements</div>
- <div class="row justify-content-center py-3 mx-2">
- {{ range .Site.Params.achievements }}
- {{ if .img }}
- {{ $img = .img }}
- {{ end }}
- {{ if .url }}
- <div class="col-md-5 achiv-out px-4 px-md-2 my-2" data-aos="fade-up" data-aos-easing="linear"
- data-aos-duration="600" data-aos-once="true">
- <a target="_blank" href={{ .url | default "#" }}>
- <div class="achiv-card d-flex align-items-end shadow-lg rounded" style="background-image: url(./{{ .img }});">
- <div class="p-3 w-100 achiv overflow-hidden">
- <h4 class="text-center achiv-head">{{ .title }}</h4>
- <div class="text-secondary">{{ .description }}</div>
- </div>
- </div>
- </a>
- </div>
- {{ else }}
- <div class="col-md-5 achiv-out px-4 px-md-2 my-2" data-aos="fade-up" data-aos-easing="linear"
- data-aos-duration="600" data-aos-once="true">
- <div class="achiv-card d-flex align-items-end shadow-lg rounded" style="background-image: url(./{{ .img }});">
- <div class="p-3 w-100 achiv overflow-hidden">
- <h4 class="text-center achiv-head">{{ .title }}</h4>
- <div class="text-secondary">{{ .description }}</div>
- </div>
- </div>
- </div>
- {{ end }}
- {{ end }}
- </div>
- </div>
-</section> \ No newline at end of file
diff --git a/layouts/partials/sections/v3/contact.html b/layouts/partials/sections/v3/contact.html
deleted file mode 100644
index 0ff8e57..0000000
--- a/layouts/partials/sections/v3/contact.html
+++ /dev/null
@@ -1,17 +0,0 @@
-<section id="contact">
- <div class="container-fluid py-5">
- <div class="text-right text-center h3">Get In Touch</div>
- <div class="row justify-content-center px-md-5">
- <div class="col-md-6 py-3">
- <div class="text-center">{{ .Site.Params.contact_content | emojify | markdownify }}</div>
- {{ if .Site.Params.email }}
- <div class="text-center pt-3">
- <a href="mailto:{{ .Site.Params.email }}?subject=Say hi!" class="contact-btn btn text-muted">
- {{ .Site.Params.getintouch | default "Get in Touch" }}
- </a>
- </div>
- {{ end }}
- </div>
- </div>
- </div>
-</section> \ No newline at end of file
diff --git a/layouts/partials/sections/v3/education.html b/layouts/partials/sections/v3/education.html
deleted file mode 100644
index 93043e4..0000000
--- a/layouts/partials/sections/v3/education.html
+++ /dev/null
@@ -1,275 +0,0 @@
-<section id="education" class="education-backdark education-back">
- <div class="container-fluid py-3 pt-5">
- <div class="text-dark text-center h3">Education</div>
- <div class="row row-eq-height text-md-right justify-content-center">
- <div class="col-md-5 pl-5 py-3 pb-0 v-center">
- <ul class="edu">
- {{ range .Site.Params.education }}
- <li class="py-2 edu-item">
- <h5 class="text-muted" style="font-size: 20px">
- {{ .degree }} - {{ .branch }}
- </h5>
- <div style="font-size: 15px">{{ .university }}</div>
- <div class="">
- <small>{{ .startedyear }}</small>
- -
- <small>{{ .graduation}}</small>
- </div>
- </li>
- {{ end }}
- </ul>
- </div>
- <div class="col-md-5 overflow-hidden py-3 d-none d-md-block">
- <svg class="edu-img" height="350px" xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink" width="540pt" height="416.250001pt" viewBox="0 0 540 416.250001"
- version="1.2">
- <defs>
- <clipPath id="clip1">
- <path
- d="M 61.878906 151 L 451.816406 151 L 451.816406 341.761719 L 61.878906 341.761719 Z M 61.878906 151 " />
- </clipPath>
- <clipPath id="clip2">
- <path d="M 61.628906 66 L 452 66 L 452 292 L 61.628906 292 Z M 61.628906 66 " />
- </clipPath>
- <clipPath id="clip3">
- <path
- d="M 219.152344 165.039062 L 451.816406 165.039062 L 451.816406 341.761719 L 219.152344 341.761719 Z M 219.152344 165.039062 " />
- </clipPath>
- <clipPath id="clip4">
- <path d="M 395 289.695312 L 457.496094 289.695312 L 457.496094 322 L 395 322 Z M 395 289.695312 " />
- </clipPath>
- <clipPath id="clip5">
- <path d="M 396 283 L 457.496094 283 L 457.496094 319.558594 L 396 319.558594 Z M 396 283 " />
- </clipPath>
- <clipPath id="clip6">
- <path d="M 158 55.835938 L 206 55.835938 L 206 87 L 158 87 Z M 158 55.835938 " />
- </clipPath>
- </defs>
- <g id="surface1">
- <path style="
- stroke: none;
- fill-rule: nonzero;
- fill: rgb(100%, 39.99939%, 76.858521%);
- fill-opacity: 1;
- "
- d="M 252.226562 223.183594 C 248.492188 223.183594 244.757812 223.214844 241.027344 223.273438 C 237.296875 223.335938 233.574219 223.425781 229.855469 223.546875 C 226.140625 223.667969 222.433594 223.820312 218.738281 224 C 215.042969 224.179688 211.363281 224.390625 207.703125 224.632812 C 204.039062 224.871094 200.394531 225.144531 196.773438 225.441406 C 193.148438 225.742188 189.550781 226.070312 185.976562 226.429688 C 182.402344 226.789062 178.855469 227.175781 175.339844 227.589844 C 171.824219 228.007812 168.339844 228.449219 164.886719 228.921875 C 161.4375 229.394531 158.023438 229.894531 154.648438 230.421875 C 151.269531 230.949219 147.933594 231.503906 144.640625 232.085938 C 141.347656 232.667969 138.097656 233.273438 134.894531 233.910156 C 131.691406 234.542969 128.535156 235.203125 125.429688 235.886719 C 122.324219 236.574219 119.273438 237.285156 116.273438 238.019531 C 113.273438 238.753906 110.328125 239.511719 107.441406 240.296875 C 104.554688 241.078125 101.726562 241.882812 98.957031 242.710938 C 96.191406 243.539062 93.488281 244.390625 90.847656 245.261719 C 88.203125 246.136719 85.628906 247.027344 83.121094 247.941406 C 80.613281 248.855469 78.175781 249.789062 75.804688 250.746094 C 73.433594 251.699219 71.136719 252.671875 68.914062 253.660156 C 66.6875 254.652344 64.539062 255.660156 62.464844 256.6875 C 60.386719 257.710938 58.390625 258.753906 56.46875 259.8125 C 54.550781 260.871094 52.710938 261.945312 50.949219 263.03125 C 49.1875 264.121094 47.507812 265.222656 45.910156 266.335938 C 44.316406 267.453125 42.800781 268.578125 41.371094 269.71875 C 39.941406 270.859375 38.597656 272.011719 37.339844 273.171875 C 36.082031 274.332031 34.910156 275.503906 33.828125 276.683594 C 32.742188 277.867188 31.746094 279.054688 30.839844 280.25 C 29.933594 281.449219 29.113281 282.652344 28.386719 283.859375 C 27.65625 285.070312 27.019531 286.285156 26.46875 287.507812 C 25.921875 288.726562 25.464844 289.949219 25.097656 291.179688 C 24.734375 292.40625 24.457031 293.636719 24.273438 294.867188 C 24.089844 296.101562 24 297.332031 24 298.566406 C 24 299.800781 24.089844 301.035156 24.273438 302.265625 C 24.457031 303.5 24.734375 304.730469 25.097656 305.957031 C 25.464844 307.183594 25.921875 308.40625 26.46875 309.628906 C 27.019531 310.847656 27.65625 312.0625 28.386719 313.273438 C 29.113281 314.484375 29.933594 315.6875 30.839844 316.882812 C 31.746094 318.082031 32.742188 319.269531 33.828125 320.449219 C 34.910156 321.628906 36.082031 322.800781 37.339844 323.964844 C 38.597656 325.125 39.941406 326.277344 41.371094 327.414062 C 42.800781 328.554688 44.316406 329.683594 45.910156 330.796875 C 47.507812 331.914062 49.1875 333.015625 50.949219 334.101562 C 52.710938 335.191406 54.550781 336.265625 56.46875 337.324219 C 58.390625 338.378906 60.386719 339.421875 62.464844 340.449219 C 64.539062 341.472656 66.6875 342.484375 68.914062 343.472656 C 71.136719 344.464844 73.433594 345.4375 75.804688 346.390625 C 78.175781 347.34375 80.613281 348.277344 83.121094 349.191406 C 85.628906 350.105469 88.203125 351 90.847656 351.871094 C 93.488281 352.746094 96.191406 353.59375 98.957031 354.421875 C 101.726562 355.25 104.554688 356.058594 107.441406 356.839844 C 110.328125 357.621094 113.273438 358.382812 116.273438 359.117188 C 119.273438 359.851562 122.324219 360.5625 125.429688 361.246094 C 128.535156 361.933594 131.691406 362.59375 134.894531 363.226562 C 138.097656 363.859375 141.347656 364.46875 144.640625 365.050781 C 147.933594 365.632812 151.269531 366.1875 154.648438 366.714844 C 158.023438 367.242188 161.4375 367.742188 164.886719 368.214844 C 168.339844 368.683594 171.824219 369.128906 175.339844 369.542969 C 178.855469 369.960938 182.402344 370.347656 185.976562 370.707031 C 189.550781 371.0625 193.148438 371.390625 196.773438 371.691406 C 200.394531 371.992188 204.039062 372.261719 207.703125 372.503906 C 211.363281 372.742188 215.042969 372.953125 218.738281 373.136719 C 222.433594 373.316406 226.140625 373.46875 229.855469 373.589844 C 233.574219 373.710938 237.296875 373.800781 241.027344 373.859375 C 244.757812 373.921875 248.492188 373.953125 252.226562 373.953125 C 255.960938 373.953125 259.695312 373.921875 263.425781 373.859375 C 267.15625 373.800781 270.878906 373.710938 274.597656 373.589844 C 278.3125 373.46875 282.019531 373.316406 285.714844 373.136719 C 289.410156 372.953125 293.089844 372.742188 296.75 372.503906 C 300.414062 372.261719 304.058594 371.992188 307.679688 371.691406 C 311.304688 371.390625 314.902344 371.0625 318.476562 370.707031 C 322.050781 370.347656 325.597656 369.960938 329.113281 369.542969 C 332.628906 369.128906 336.113281 368.683594 339.566406 368.214844 C 343.015625 367.742188 346.429688 367.242188 349.804688 366.714844 C 353.183594 366.1875 356.519531 365.632812 359.8125 365.050781 C 363.105469 364.46875 366.355469 363.859375 369.558594 363.226562 C 372.761719 362.59375 375.917969 361.933594 379.023438 361.246094 C 382.128906 360.5625 385.179688 359.851562 388.179688 359.117188 C 391.179688 358.382812 394.125 357.621094 397.011719 356.839844 C 399.898438 356.058594 402.726562 355.25 405.492188 354.421875 C 408.261719 353.59375 410.964844 352.746094 413.605469 351.871094 C 416.25 351 418.824219 350.105469 421.332031 349.191406 C 423.839844 348.277344 426.277344 347.34375 428.648438 346.390625 C 431.015625 345.4375 433.316406 344.464844 435.539062 343.472656 C 437.765625 342.484375 439.914062 341.472656 441.988281 340.449219 C 444.066406 339.421875 446.0625 338.378906 447.984375 337.324219 C 449.902344 336.265625 451.742188 335.191406 453.503906 334.101562 C 455.265625 333.015625 456.945312 331.914062 458.539062 330.796875 C 460.136719 329.683594 461.652344 328.554688 463.082031 327.414062 C 464.507812 326.277344 465.851562 325.125 467.113281 323.964844 C 468.371094 322.800781 469.542969 321.628906 470.625 320.449219 C 471.710938 319.269531 472.707031 318.082031 473.613281 316.882812 C 474.519531 315.6875 475.339844 314.484375 476.066406 313.273438 C 476.796875 312.0625 477.433594 310.847656 477.984375 309.628906 C 478.53125 308.40625 478.988281 307.183594 479.355469 305.957031 C 479.71875 304.730469 479.996094 303.5 480.179688 302.265625 C 480.363281 301.035156 480.453125 299.800781 480.453125 298.566406 C 480.453125 297.332031 480.363281 296.101562 480.179688 294.867188 C 479.996094 293.636719 479.71875 292.40625 479.355469 291.179688 C 478.988281 289.949219 478.53125 288.726562 477.984375 287.507812 C 477.433594 286.285156 476.796875 285.070312 476.066406 283.859375 C 475.339844 282.652344 474.519531 281.449219 473.613281 280.25 C 472.707031 279.054688 471.710938 277.867188 470.625 276.683594 C 469.542969 275.503906 468.371094 274.332031 467.113281 273.171875 C 465.851562 272.011719 464.507812 270.859375 463.082031 269.71875 C 461.652344 268.578125 460.136719 267.453125 458.539062 266.335938 C 456.945312 265.222656 455.265625 264.121094 453.503906 263.03125 C 451.742188 261.945312 449.902344 260.871094 447.984375 259.8125 C 446.0625 258.753906 444.066406 257.710938 441.988281 256.6875 C 439.914062 255.660156 437.765625 254.652344 435.539062 253.660156 C 433.316406 252.671875 431.015625 251.699219 428.648438 250.746094 C 426.277344 249.789062 423.839844 248.855469 421.332031 247.941406 C 418.824219 247.027344 416.25 246.136719 413.605469 245.261719 C 410.964844 244.390625 408.261719 243.539062 405.492188 242.710938 C 402.726562 241.882812 399.898438 241.078125 397.011719 240.296875 C 394.125 239.511719 391.179688 238.753906 388.179688 238.019531 C 385.179688 237.285156 382.128906 236.574219 379.023438 235.886719 C 375.917969 235.203125 372.761719 234.542969 369.558594 233.910156 C 366.355469 233.273438 363.105469 232.667969 359.8125 232.085938 C 356.519531 231.503906 353.183594 230.949219 349.804688 230.421875 C 346.429688 229.894531 343.015625 229.394531 339.566406 228.921875 C 336.113281 228.449219 332.628906 228.007812 329.113281 227.589844 C 325.597656 227.175781 322.050781 226.789062 318.476562 226.429688 C 314.902344 226.070312 311.304688 225.742188 307.679688 225.441406 C 304.058594 225.144531 300.414062 224.871094 296.75 224.632812 C 293.089844 224.390625 289.410156 224.179688 285.714844 224 C 282.019531 223.820312 278.3125 223.667969 274.597656 223.546875 C 270.878906 223.425781 267.15625 223.335938 263.425781 223.273438 C 259.695312 223.214844 255.960938 223.183594 252.226562 223.183594 Z M 252.226562 223.183594 " />
- <g clip-path="url(#clip1)" clip-rule="nonzero">
- <path style="
- stroke: none;
- fill-rule: evenodd;
- fill: rgb(69.018555%, 9.01947%, 26.669312%);
- fill-opacity: 1;
- "
- d="M 388.511719 271.109375 L 298.628906 323.257812 L 298.628906 327.914062 L 389.296875 275.308594 C 389.066406 273.898438 388.800781 272.5 388.511719 271.109375 Z M 409.222656 263.753906 L 413.921875 261.054688 C 414.058594 259.5 414.101562 257.921875 414.046875 256.320312 L 409.011719 259.226562 C 409.039062 259.6875 409.0625 260.144531 409.101562 260.597656 C 409.121094 261.664062 409.164062 262.714844 409.222656 263.753906 Z M 437.882812 247.179688 L 451.105469 239.488281 L 443.035156 234.835938 L 443.035156 239.488281 L 438.046875 242.394531 C 438.050781 242.558594 438.050781 242.726562 438.046875 242.898438 C 438 244.324219 437.945312 245.75 437.882812 247.179688 Z M 136.832031 206.667969 C 137.109375 205.890625 137.46875 205.164062 137.914062 204.507812 C 138.09375 204.195312 138.289062 203.890625 138.496094 203.589844 L 135.25 201.714844 C 134.96875 202.066406 134.800781 202.460938 134.75 202.921875 C 135.636719 204.027344 136.332031 205.277344 136.832031 206.667969 Z M 137.578125 218.546875 L 136.832031 223.371094 C 136.753906 223.625 136.671875 223.886719 136.582031 224.15625 L 136.542969 224.28125 C 136.347656 224.925781 136.144531 225.597656 135.917969 226.277344 C 135.636719 228.101562 135.195312 230.238281 134.582031 232.675781 C 134.25 234.0625 133.699219 236.167969 132.921875 238.992188 C 132.089844 242.152344 131.535156 244.945312 131.257812 247.386719 C 131.179688 247.960938 131.125 248.511719 131.089844 249.046875 L 135.621094 251.667969 C 136.121094 249.019531 136.90625 244.128906 137.992188 237 C 138.160156 231.621094 138.246094 228.660156 138.246094 228.101562 C 138.246094 224.667969 138.105469 221.675781 137.832031 219.128906 C 137.71875 218.90625 137.632812 218.714844 137.578125 218.546875 Z M 164.53125 206.828125 C 163.882812 207.199219 163.285156 207.535156 162.746094 207.828125 L 299.292969 286.691406 L 301.375 290.179688 L 304.699219 283.703125 L 168.355469 204.835938 C 168.191406 204.890625 168.050781 204.972656 167.945312 205.085938 C 167.832031 205.140625 167.746094 205.195312 167.691406 205.25 C 166.472656 205.804688 165.417969 206.332031 164.53125 206.828125 Z M 145.605469 257.480469 L 290.5625 341.789062 L 290.640625 291.515625 L 153.800781 212.4375 C 153.03125 212.894531 152.3125 213.351562 151.636719 213.8125 C 151.804688 214.527344 152.300781 215.472656 153.132812 216.632812 C 153.964844 217.800781 154.4375 218.769531 154.550781 219.546875 C 155.160156 222.539062 155.410156 225.53125 155.296875 228.523438 C 155.128906 231.621094 154.605469 234.589844 153.71875 237.410156 C 151.386719 242.449219 149.671875 246.472656 148.558594 249.460938 C 147.417969 252.269531 146.433594 254.945312 145.605469 257.480469 Z M 120.527344 242.898438 C 120.25 239.769531 120.082031 237.410156 120.023438 235.832031 C 119.859375 232.949219 119.777344 230.515625 119.777344 228.523438 C 119.664062 227.023438 119.609375 223.585938 119.609375 218.214844 C 119.609375 214.007812 119.335938 210.574219 118.78125 207.910156 C 117.894531 204.027344 117.644531 200.515625 118.03125 197.355469 C 118.234375 195.574219 118.632812 193.941406 119.238281 192.453125 L 61.878906 159.292969 L 61.960938 208.824219 Z M 124.558594 185.765625 C 124.695312 185.636719 124.816406 185.511719 124.933594 185.390625 C 125.992188 184.339844 126.875 183.3125 127.59375 182.316406 C 127.753906 182.078125 127.9375 181.828125 128.136719 181.570312 L 75.859375 151.320312 L 75.773438 151.320312 L 73.441406 156.222656 L 124.558594 185.765625 " />
- </g>
- <g clip-path="url(#clip2)" clip-rule="nonzero">
- <path style="
- stroke: none;
- fill-rule: evenodd;
- fill: rgb(82.348633%, 10.198975%, 36.468506%);
- fill-opacity: 1;
- "
- d="M 398.035156 216.632812 L 403.027344 223.035156 L 403.109375 223.035156 C 403.667969 224.007812 404.164062 224.992188 404.605469 225.988281 L 415.460938 219.753906 C 415.289062 219.757812 415.113281 219.773438 414.917969 219.792969 C 412.921875 220.128906 410.929688 220.074219 408.933594 219.625 L 408.847656 219.625 Z M 437.628906 206.957031 L 451.105469 199.183594 L 451.6875 198.769531 L 429.398438 185.929688 C 427.445312 188.671875 425.03125 190.046875 422.160156 190.046875 C 421.4375 190.046875 421.046875 189.933594 420.992188 189.710938 L 420.992188 189.378906 C 421.101562 188.878906 421.246094 188.4375 421.40625 188.046875 L 419.5 190.789062 L 435.550781 204.171875 C 436.320312 205.074219 437.007812 206.003906 437.628906 206.957031 Z M 153.800781 212.4375 L 290.640625 291.515625 L 299.292969 286.691406 L 162.746094 207.828125 C 161.921875 208.253906 161.246094 208.589844 160.703125 208.824219 C 158.09375 210.03125 155.792969 211.230469 153.800781 212.4375 Z M 184.414062 188.132812 C 184.414062 187.796875 184.382812 187.46875 184.328125 187.132812 C 184.273438 186.636719 184.167969 186.132812 184 185.636719 C 184.21875 186.414062 184.359375 187.246094 184.414062 188.132812 Z M 202.546875 149.65625 C 202.601562 148.382812 202.382812 146.75 201.882812 144.753906 C 201.214844 142.148438 200.855469 140.570312 200.800781 140.019531 C 200.414062 141.125 200.222656 142.484375 200.222656 144.085938 C 200.277344 145.03125 200.359375 146.445312 200.46875 148.328125 C 201.132812 148.824219 201.824219 149.269531 202.546875 149.65625 Z M 138.496094 203.589844 C 139.261719 202.40625 140.183594 201.246094 141.238281 200.097656 C 140.742188 200.097656 140.269531 200.097656 139.828125 200.097656 C 138.382812 200.265625 137.359375 200.488281 136.75 200.761719 C 136.089844 201 135.59375 201.320312 135.25 201.714844 Z M 148.0625 158.464844 C 148.945312 158.296875 150 157.96875 151.21875 157.464844 C 152.605469 156.800781 153.636719 156.304688 154.300781 155.96875 C 156.851562 154.972656 158.988281 154.558594 160.703125 154.726562 C 161.09375 151.957031 161.511719 149.902344 161.953125 148.574219 C 162.007812 148.132812 162.121094 147.6875 162.285156 147.246094 C 162.953125 145.582031 163.867188 144.285156 165.03125 143.339844 C 164.972656 142.398438 164.949219 140.515625 164.949219 137.691406 C 164.949219 135.363281 164.894531 133.480469 164.78125 132.039062 C 163.835938 134.144531 162.507812 136.386719 160.785156 138.769531 C 160.070312 139.820312 158.484375 141.925781 156.046875 145.085938 L 155.632812 145.664062 C 155.578125 145.722656 155.519531 145.773438 155.464844 145.835938 C 153.742188 148.101562 152.414062 149.984375 151.46875 151.480469 C 149.976562 153.863281 148.839844 156.191406 148.0625 158.464844 Z M 388.136719 167.523438 L 390.296875 163.371094 L 386.429688 161.125 C 386.976562 162.964844 387.523438 164.988281 388.050781 167.191406 C 388.050781 167.300781 388.078125 167.414062 388.136719 167.523438 Z M 173.097656 101.949219 C 173.378906 101.84375 173.625 101.734375 173.847656 101.621094 L 175.347656 100.789062 C 174.84375 101.011719 174.097656 101.398438 173.097656 101.949219 Z M 198.972656 154.472656 L 198.886719 154.472656 C 198.609375 154.695312 198.332031 154.945312 198.058594 155.222656 C 198.386719 154.945312 198.691406 154.695312 198.972656 154.472656 Z M 181.460938 174.296875 C 181.273438 174.457031 181.09375 174.609375 180.921875 174.753906 C 181.085938 174.640625 181.226562 174.527344 181.332031 174.421875 C 181.378906 174.378906 181.417969 174.335938 181.460938 174.296875 Z M 208.617188 163.117188 C 208.617188 163.171875 208.617188 163.257812 208.617188 163.371094 C 208.953125 166.523438 208.84375 169.734375 208.289062 173.007812 C 208.234375 173.121094 208.203125 173.257812 208.203125 173.421875 L 208.121094 173.503906 C 207.898438 174.78125 207.59375 176.054688 207.207031 177.328125 C 206.710938 178.769531 206.179688 180.15625 205.628906 181.484375 C 204.683594 183.589844 203.519531 185.554688 202.128906 187.386719 C 202.074219 187.492188 202.046875 187.605469 202.046875 187.71875 C 201.992188 187.773438 201.96875 187.828125 201.96875 187.882812 C 201.855469 187.941406 201.769531 188.019531 201.71875 188.132812 C 201.664062 188.1875 201.601562 188.246094 201.550781 188.300781 C 201.496094 188.351562 201.464844 188.40625 201.464844 188.460938 C 201.414062 188.460938 201.382812 188.492188 201.382812 188.550781 C 200.992188 189.046875 200.636719 189.488281 200.300781 189.878906 C 197.195312 193.03125 194.398438 195.527344 191.898438 197.355469 C 188.683594 199.792969 185.410156 201.511719 182.085938 202.507812 C 181.085938 203.226562 179.890625 203.449219 178.503906 203.171875 C 177.398438 203.003906 176.316406 202.480469 175.261719 201.59375 C 173.488281 202.257812 171.183594 203.339844 168.355469 204.835938 L 304.699219 283.703125 L 387.09375 236.121094 C 383.277344 235.695312 379.878906 234.128906 376.90625 231.429688 C 375.019531 229.710938 372.996094 228.300781 370.832031 227.1875 C 368.390625 225.972656 365.898438 224.78125 363.347656 223.617188 C 358.910156 221.675781 354.609375 219.351562 350.453125 216.632812 C 348.289062 215.199219 346.238281 213.726562 344.296875 212.230469 C 342.242188 210.628906 340.75 208.628906 339.804688 206.246094 C 339.003906 204.441406 338.347656 202.613281 337.851562 200.761719 L 263.773438 243.394531 C 257.117188 247.21875 251.957031 248.050781 248.300781 245.890625 L 221.265625 230.347656 C 217.605469 228.242188 219.101562 225.28125 225.753906 221.457031 L 323.292969 165.277344 C 323.191406 161.644531 323.402344 157.933594 323.917969 154.144531 C 325.0625 145.269531 326.585938 136.445312 328.492188 127.675781 L 222.675781 66.632812 L 204.085938 77.355469 C 203.730469 78.691406 203.546875 79.824219 203.546875 80.765625 C 203.265625 80.707031 202.851562 80.707031 202.296875 80.765625 C 202.242188 80.765625 202.160156 80.765625 202.046875 80.765625 L 201.300781 80.84375 C 200.359375 81.011719 199.636719 80.984375 199.140625 80.765625 C 199.03125 80.632812 198.921875 80.511719 198.804688 80.390625 L 191.609375 84.542969 C 191.507812 84.644531 191.410156 84.742188 191.320312 84.835938 C 193.703125 86.886719 196.417969 89.046875 199.46875 91.320312 L 203.210938 94.640625 C 203.546875 94.972656 203.90625 95.332031 204.292969 95.722656 C 205.460938 97.273438 206.457031 98.546875 207.289062 99.542969 C 207.734375 100.042969 208.09375 100.460938 208.371094 100.789062 C 209.089844 101.621094 209.59375 102.566406 209.867188 103.613281 C 210.203125 104.613281 210.363281 105.664062 210.363281 106.773438 C 211.253906 108.824219 211.699219 111.703125 211.699219 115.417969 C 211.699219 116.417969 211.699219 117.882812 211.699219 119.820312 C 211.699219 121.484375 211.835938 122.925781 212.117188 124.140625 C 212.335938 125.527344 212.582031 127.910156 212.863281 131.289062 C 213.085938 134.394531 213.359375 136.828125 213.695312 138.601562 C 213.75 139.707031 213.917969 141.09375 214.195312 142.757812 C 214.417969 143.699219 214.691406 145.109375 215.027344 146.996094 C 215.691406 150.429688 215.804688 153.226562 215.355469 155.386719 C 214.527344 156.496094 213.417969 157.800781 212.03125 159.292969 C 210.035156 161.453125 208.898438 162.730469 208.617188 163.117188 Z M 153.800781 125.304688 C 153.910156 125.085938 154.046875 124.835938 154.214844 124.558594 L 155.632812 121.980469 C 154.910156 120.429688 154.9375 118.683594 155.714844 116.746094 C 156.105469 115.808594 157.074219 114.226562 158.628906 112.007812 C 158.789062 111.566406 158.933594 111.121094 159.042969 110.679688 C 159.09375 110.511719 159.152344 110.40625 159.207031 110.351562 C 159.933594 107.964844 160.515625 105.261719 160.953125 102.246094 L 75.859375 151.320312 L 128.136719 181.570312 C 128.234375 181.457031 128.332031 181.347656 128.429688 181.234375 L 122.1875 177.660156 C 119.140625 175.886719 117.140625 174.144531 116.203125 172.425781 L 102.808594 147.414062 C 101.863281 145.636719 102.917969 145.613281 105.964844 147.328125 L 130.757812 161.707031 C 131.808594 160.988281 133.089844 160.265625 134.582031 159.546875 C 137.246094 158.21875 139.050781 157.136719 139.988281 156.304688 C 144.539062 145.5 146.949219 139.707031 147.230469 138.9375 C 149.503906 133.839844 151.691406 129.296875 153.800781 125.304688 Z M 61.878906 159.292969 L 119.238281 192.453125 C 119.945312 190.699219 120.929688 189.148438 122.1875 187.796875 C 123.085938 187.140625 123.878906 186.460938 124.558594 185.765625 L 73.441406 156.222656 L 70.195312 154.558594 L 61.878906 159.292969 " />
- </g>
- <g clip-path="url(#clip3)" clip-rule="nonzero">
- <path style="
- stroke: none;
- fill-rule: evenodd;
- fill: rgb(93.728638%, 15.289307%, 48.239136%);
- fill-opacity: 1;
- "
- d="M 415.460938 219.753906 L 404.605469 225.988281 C 405.730469 228.488281 406.519531 231.09375 406.976562 233.796875 L 415.917969 228.605469 C 416.105469 227.746094 416.304688 226.882812 416.503906 226.027344 C 416.671875 225.027344 417 224.113281 417.503906 223.285156 C 417.558594 223.171875 417.585938 223.089844 417.585938 223.035156 C 417.695312 222.8125 417.777344 222.648438 417.832031 222.539062 C 418 222.152344 418.359375 221.816406 418.914062 221.539062 C 418.96875 221.539062 419.050781 221.511719 419.164062 221.457031 C 419.386719 221.34375 419.636719 221.179688 419.910156 220.960938 C 419.804688 220.847656 419.664062 220.761719 419.5 220.710938 C 418.542969 219.957031 417.199219 219.636719 415.460938 219.753906 Z M 413.921875 261.054688 L 409.222656 263.753906 C 409.417969 266.828125 409.789062 269.847656 410.347656 272.8125 L 411.34375 272.234375 C 411.496094 271.621094 411.695312 271.011719 411.929688 270.402344 C 412.996094 267.382812 413.660156 264.265625 413.921875 261.054688 Z M 451.105469 199.183594 L 437.628906 206.957031 C 439.074219 209.214844 440.117188 211.636719 440.75 214.222656 L 443.035156 212.894531 L 451.105469 208.246094 Z M 451.105469 239.488281 L 437.882812 247.179688 C 437.746094 250.542969 437.578125 253.894531 437.378906 257.230469 L 451.105469 249.296875 Z M 290.640625 291.515625 L 290.5625 341.789062 L 299.375 336.886719 L 301.207031 331.730469 L 301.375 330.988281 L 304.621094 333.726562 L 304.699219 333.8125 L 390.464844 284.28125 C 390.285156 282.449219 390.058594 280.570312 389.796875 278.632812 C 389.652344 277.515625 389.488281 276.40625 389.296875 275.308594 L 298.628906 327.914062 L 298.628906 296.582031 L 384.644531 246.71875 C 385.226562 243.085938 386.140625 239.566406 387.390625 236.167969 C 387.289062 236.15625 387.191406 236.140625 387.09375 236.121094 L 304.699219 283.703125 L 301.375 290.179688 L 299.292969 286.691406 Z M 337.851562 200.761719 C 336.988281 197.59375 336.5625 194.351562 336.5625 191.039062 C 333.453125 188.773438 330.570312 186.550781 327.910156 184.390625 C 326.796875 183.394531 326.050781 182.230469 325.660156 180.898438 C 324.214844 175.859375 323.421875 170.648438 323.292969 165.277344 L 225.753906 221.457031 C 219.101562 225.28125 217.605469 228.242188 221.265625 230.347656 L 248.300781 245.890625 C 251.957031 248.050781 257.117188 247.21875 263.773438 243.394531 L 337.851562 200.761719 " />
- </g>
- <path style="
- stroke: none;
- fill-rule: evenodd;
- fill: rgb(88.238525%, 84.709167%, 69.40918%);
- fill-opacity: 1;
- "
- d="M 298.628906 312.539062 C 298.847656 312.425781 299.101562 312.339844 299.375 312.289062 C 299.984375 312.121094 300.648438 311.929688 301.375 311.707031 C 302.480469 311.316406 303.5625 310.875 304.621094 310.378906 C 313.433594 306.9375 326.242188 300.320312 343.050781 290.515625 C 360.140625 280.710938 374.65625 271.789062 386.597656 263.753906 C 386.230469 262.546875 385.855469 261.355469 385.476562 260.183594 C 384.25 256.304688 383.890625 252.398438 384.394531 248.464844 C 384.46875 247.886719 384.550781 247.304688 384.644531 246.71875 L 298.628906 296.582031 Z M 407.933594 250.375 C 409.671875 249.394531 411.507812 248.371094 413.425781 247.300781 C 413.542969 247.234375 413.664062 247.167969 413.800781 247.09375 C 413.855469 244.15625 414.058594 241.203125 414.421875 238.242188 C 414.769531 235.015625 415.269531 231.800781 415.917969 228.605469 L 406.976562 233.796875 C 407.222656 235.191406 407.375 236.617188 407.433594 238.078125 C 407.601562 240.402344 407.628906 242.675781 407.519531 244.890625 C 407.46875 246.761719 407.613281 248.589844 407.933594 250.375 Z M 439.085938 232.46875 C 440.46875 231.597656 441.78125 230.722656 443.035156 229.851562 L 443.035156 212.894531 L 440.75 214.222656 C 441.054688 215.488281 441.265625 216.789062 441.375 218.136719 C 441.816406 222.066406 441.320312 225.914062 439.878906 229.683594 C 439.546875 230.527344 439.285156 231.453125 439.085938 232.46875 " />
- <path style="
- stroke: none;
- fill-rule: evenodd;
- fill: rgb(100%, 98.81897%, 94.898987%);
- fill-opacity: 1;
- "
- d="M 298.628906 323.257812 L 388.511719 271.109375 C 388.242188 269.898438 387.949219 268.695312 387.636719 267.492188 C 387.296875 266.230469 386.953125 264.980469 386.597656 263.753906 C 374.65625 271.789062 360.140625 280.710938 343.050781 290.515625 C 326.242188 300.320312 313.433594 306.9375 304.621094 310.378906 C 303.5625 310.875 302.480469 311.316406 301.375 311.707031 C 300.648438 311.929688 299.984375 312.121094 299.375 312.289062 C 299.101562 312.339844 298.847656 312.425781 298.628906 312.539062 Z M 409.011719 259.226562 L 414.046875 256.320312 C 414.046875 255.882812 414.035156 255.457031 414.003906 255.03125 L 413.835938 253.285156 C 413.75 251.230469 413.734375 249.167969 413.800781 247.09375 C 413.664062 247.167969 413.542969 247.234375 413.425781 247.300781 C 411.507812 248.371094 409.671875 249.394531 407.933594 250.375 C 408.011719 250.769531 408.09375 251.15625 408.1875 251.539062 C 408.570312 253.035156 408.796875 254.589844 408.847656 256.191406 C 408.886719 257.195312 408.941406 258.207031 409.011719 259.226562 Z M 438.046875 242.394531 L 443.035156 239.488281 L 443.035156 229.851562 C 441.78125 230.722656 440.46875 231.597656 439.085938 232.46875 C 438.96875 232.988281 438.875 233.523438 438.796875 234.085938 C 438.375 236.800781 438.125 239.574219 438.046875 242.394531 Z M 433.140625 162.789062 L 433.140625 162.699219 L 436.300781 158.21875 L 446.03125 139.765625 L 429.894531 162.699219 L 414.917969 161.957031 L 408.347656 161.621094 L 398.449219 161.125 L 391.714844 160.707031 L 390.296875 163.371094 L 388.136719 167.523438 L 376.824219 188.796875 C 377.601562 188.6875 378.347656 188.660156 379.066406 188.714844 C 379.234375 188.660156 379.398438 188.660156 379.566406 188.714844 L 392.796875 163.78125 L 427.070312 165.613281 L 427.316406 165.277344 L 433.140625 162.789062 " />
- <path style="
- stroke: none;
- fill-rule: evenodd;
- fill: rgb(36.079407%, 39.219666%, 72.158813%);
- fill-opacity: 1;
- " d="M 304.621094 333.726562 L 301.375 330.988281 L 301.207031 331.730469 Z M 304.621094 333.726562 " />
- <path style="
- stroke: none;
- fill-rule: evenodd;
- fill: rgb(97.648621%, 88.62915%, 2.749634%);
- fill-opacity: 1;
- "
- d="M 359.273438 188.132812 L 362.429688 190.457031 L 363.429688 189.796875 C 364.09375 189.628906 364.703125 189.429688 365.257812 189.214844 C 367.035156 188.824219 369.808594 188.964844 373.578125 189.628906 C 374.6875 189.183594 375.769531 188.910156 376.824219 188.796875 L 388.136719 167.523438 C 388.078125 167.414062 388.050781 167.300781 388.050781 167.191406 C 387.523438 164.988281 386.976562 162.964844 386.429688 161.125 C 386.214844 160.464844 386.007812 159.824219 385.804688 159.210938 C 385.027344 156.882812 384.667969 155.441406 384.722656 154.890625 C 385.226562 149.574219 386.027344 144.285156 387.136719 139.019531 C 387.191406 137.90625 387.277344 136.828125 387.390625 135.777344 C 387.609375 131.953125 388 128.132812 388.550781 124.308594 C 389.105469 120.210938 389.851562 116.136719 390.796875 112.09375 C 391.40625 109.433594 391.269531 106.910156 390.378906 104.527344 L 389.714844 103.285156 L 385.890625 100.628906 C 385.941406 101.621094 385.699219 102.730469 385.140625 103.949219 L 381.816406 109.929688 L 381.976562 115.332031 L 379.484375 115.082031 C 379.484375 117.027344 378.683594 118.464844 377.074219 119.40625 C 374.910156 120.625 372.941406 120.429688 371.167969 118.820312 C 369.167969 120.265625 367.007812 120.625 364.679688 119.902344 C 363.511719 119.515625 362.402344 119.074219 361.347656 118.574219 C 357.855469 116.691406 355.332031 113.867188 353.777344 110.097656 C 352.171875 105.613281 352.421875 102.589844 354.53125 101.042969 C 354.804688 100.875 355.027344 100.734375 355.195312 100.628906 L 354.609375 98.964844 C 350.285156 101.949219 346.210938 105.140625 342.382812 108.519531 C 338.78125 111.511719 335.617188 115.027344 332.898438 119.074219 C 332.179688 120.070312 331.488281 121.179688 330.820312 122.398438 C 331.984375 122.453125 333.203125 122.644531 334.480469 122.980469 C 340.304688 124.253906 344.933594 127.273438 348.371094 132.039062 C 350.390625 134.835938 351.816406 138.035156 352.65625 141.636719 C 353.269531 144.320312 353.542969 147.226562 353.488281 150.359375 C 353.484375 151.324219 353.441406 152.308594 353.367188 153.3125 C 353.03125 157.023438 354.390625 165.804688 357.4375 179.65625 C 358.105469 182.757812 358.714844 185.582031 359.273438 188.132812 " />
- <path style="
- stroke: none;
- fill-rule: evenodd;
- fill: rgb(90.19928%, 67.83905%, 6.269836%);
- fill-opacity: 1;
- "
- d="M 328.574219 127.214844 C 335.5625 127.71875 340.96875 130.265625 344.796875 134.863281 L 347.125 138.355469 L 347.125 138.433594 C 347.125 138.492188 347.152344 138.574219 347.207031 138.683594 L 347.292969 138.769531 L 347.292969 138.851562 C 347.292969 138.914062 347.351562 138.992188 347.457031 139.101562 L 347.457031 139.265625 C 347.1875 143.710938 346.660156 148.101562 345.878906 152.441406 C 344.574219 159.597656 342.578125 166.617188 339.886719 173.503906 L 342.96875 175.832031 L 359.273438 188.132812 C 358.714844 185.582031 358.105469 182.757812 357.4375 179.65625 C 354.390625 165.804688 353.03125 157.023438 353.367188 153.3125 C 353.441406 152.308594 353.484375 151.324219 353.488281 150.359375 C 353.542969 147.226562 353.269531 144.320312 352.65625 141.636719 C 351.816406 138.035156 350.390625 134.835938 348.371094 132.039062 C 344.933594 127.273438 340.304688 124.253906 334.480469 122.980469 C 333.203125 122.644531 331.984375 122.453125 330.820312 122.398438 C 329.984375 123.949219 329.238281 125.558594 328.574219 127.214844 " />
- <path style="
- stroke: none;
- fill-rule: evenodd;
- fill: rgb(83.529663%, 92.549133%, 96.469116%);
- fill-opacity: 1;
- "
- d="M 408.347656 161.621094 L 414.917969 161.957031 C 413.539062 158.519531 412.398438 155 411.511719 151.398438 C 409.902344 144.640625 407.546875 138.296875 404.4375 132.367188 C 403.605469 130.765625 402.804688 129.070312 402.027344 127.300781 C 398.421875 119.15625 394.320312 111.152344 389.714844 103.285156 L 390.378906 104.527344 C 391.269531 106.910156 391.40625 109.433594 390.796875 112.09375 C 389.851562 116.136719 389.105469 120.210938 388.550781 124.308594 C 391.546875 129.128906 394.984375 135.25 398.871094 142.675781 C 402.582031 149.710938 405.742188 156.027344 408.347656 161.621094 Z M 347.292969 138.851562 C 347.292969 138.964844 347.351562 139.101562 347.457031 139.265625 L 347.457031 139.101562 C 347.351562 138.992188 347.292969 138.914062 347.292969 138.851562 Z M 344.796875 134.863281 C 340.96875 130.265625 335.5625 127.71875 328.574219 127.214844 C 328.539062 127.367188 328.511719 127.523438 328.492188 127.675781 C 326.585938 136.445312 325.0625 145.269531 323.917969 154.144531 C 323.402344 157.933594 323.191406 161.644531 323.292969 165.277344 C 323.421875 170.648438 324.214844 175.859375 325.660156 180.898438 C 326.050781 182.230469 326.796875 183.394531 327.910156 184.390625 C 330.570312 186.550781 333.453125 188.773438 336.5625 191.039062 L 354.609375 204.417969 C 354.777344 204.476562 354.914062 204.5625 355.027344 204.667969 L 355.113281 204.753906 C 357.550781 206.46875 360.042969 206.910156 362.597656 206.082031 C 361.097656 205.195312 360.351562 203.785156 360.351562 201.84375 C 360.351562 199.019531 362.542969 196.113281 366.921875 193.117188 C 365.535156 192.0625 364.039062 191.179688 362.429688 190.457031 L 359.273438 188.132812 L 342.96875 175.832031 C 340.910156 175.722656 339.359375 175.449219 338.308594 175 C 336.589844 174.167969 335.726562 172.621094 335.726562 170.351562 C 335.726562 167.925781 336.28125 163.539062 337.394531 157.175781 C 337.730469 155.234375 338.113281 153.121094 338.554688 150.820312 C 339.839844 143.800781 341.050781 138.71875 342.175781 135.570312 C 342.496094 134.640625 342.816406 133.878906 343.132812 133.289062 C 343.632812 133.726562 344.1875 134.25 344.796875 134.863281 Z M 180.667969 106.027344 C 177.617188 107.855469 172.65625 108.769531 165.777344 108.769531 C 164.558594 108.769531 163.285156 108.519531 161.953125 108.023438 C 161.785156 108.242188 161.59375 108.488281 161.371094 108.769531 L 160.535156 109.929688 C 160.152344 110.320312 159.789062 110.707031 159.457031 111.097656 C 159.34375 111.207031 159.238281 111.320312 159.125 111.429688 L 158.875 111.84375 C 158.820312 111.84375 158.734375 111.898438 158.628906 112.007812 C 157.074219 114.226562 156.105469 115.808594 155.714844 116.746094 C 154.9375 118.683594 154.910156 120.429688 155.632812 121.980469 L 156.792969 124.0625 C 157.347656 124.78125 158.011719 125.527344 158.789062 126.304688 C 162.066406 127.132812 166.113281 128.6875 170.933594 130.960938 C 177.367188 133.953125 181.972656 135.449219 184.746094 135.449219 C 185.90625 135.449219 187.300781 134.835938 188.902344 133.617188 C 190.511719 132.457031 191.320312 131.425781 191.320312 130.542969 C 191.320312 129.488281 190.761719 127.359375 189.65625 124.140625 C 188.597656 120.929688 188.070312 118.769531 188.070312 117.660156 C 188.070312 113.175781 189.792969 109.296875 193.230469 106.027344 L 193.316406 105.941406 C 192.09375 106.382812 190.816406 106.664062 189.488281 106.773438 C 186.492188 107.054688 183.550781 106.800781 180.667969 106.027344 Z M 200.886719 100.875 C 202.214844 100.375 203.65625 100.019531 205.210938 99.796875 C 205.925781 99.683594 206.625 99.601562 207.289062 99.542969 C 206.457031 98.546875 205.460938 97.273438 204.292969 95.722656 C 203.90625 95.332031 203.546875 94.972656 203.210938 94.640625 C 203.105469 95.082031 202.960938 95.53125 202.796875 95.972656 C 202.351562 97.691406 201.71875 99.324219 200.886719 100.875 " />
- <path style="
- stroke: none;
- fill-rule: evenodd;
- fill: rgb(67.449951%, 77.648926%, 90.979004%);
- fill-opacity: 1;
- "
- d="M 398.449219 161.125 L 408.347656 161.621094 C 405.742188 156.027344 402.582031 149.710938 398.871094 142.675781 C 394.984375 135.25 391.546875 129.128906 388.550781 124.308594 C 388 128.132812 387.609375 131.953125 387.390625 135.777344 C 387.277344 136.828125 387.191406 137.90625 387.136719 139.019531 C 388.023438 140.402344 388.800781 141.84375 389.464844 143.339844 C 391.683594 147.9375 393.984375 152.480469 396.371094 156.96875 C 397.09375 158.355469 397.789062 159.738281 398.449219 161.125 Z M 347.457031 139.265625 C 347.351562 139.101562 347.292969 138.964844 347.292969 138.851562 L 347.292969 138.769531 L 347.207031 138.683594 C 347.152344 138.574219 347.125 138.492188 347.125 138.433594 L 347.125 138.355469 L 344.796875 134.863281 C 344.1875 134.25 343.632812 133.726562 343.132812 133.289062 C 342.816406 133.878906 342.496094 134.640625 342.175781 135.570312 C 341.050781 138.71875 339.839844 143.800781 338.554688 150.820312 C 338.113281 153.121094 337.730469 155.234375 337.394531 157.175781 C 336.28125 163.539062 335.726562 167.925781 335.726562 170.351562 C 335.726562 172.621094 336.589844 174.167969 338.308594 175 C 339.359375 175.449219 340.910156 175.722656 342.96875 175.832031 L 339.886719 173.503906 C 342.578125 166.617188 344.574219 159.597656 345.878906 152.441406 C 346.660156 148.101562 347.1875 143.710938 347.457031 139.265625 Z M 173.097656 101.949219 C 172.214844 102.339844 171.4375 102.480469 170.773438 102.367188 C 169.941406 102.203125 168.914062 101.539062 167.691406 100.375 C 167.164062 99.890625 166.664062 99.507812 166.199219 99.210938 C 165.589844 98.804688 165.035156 98.558594 164.53125 98.464844 C 164.578125 99.023438 164.59375 99.597656 164.574219 100.164062 C 164.476562 102.832031 163.601562 105.449219 161.953125 108.023438 C 163.285156 108.519531 164.558594 108.769531 165.777344 108.769531 C 172.65625 108.769531 177.617188 107.855469 180.667969 106.027344 C 178.0625 105.199219 175.789062 103.726562 173.847656 101.621094 C 173.625 101.734375 173.378906 101.84375 173.097656 101.949219 Z M 200.46875 148.328125 C 200.359375 146.445312 200.277344 145.03125 200.222656 144.085938 C 200.222656 142.484375 200.414062 141.125 200.800781 140.019531 C 199.96875 133.699219 199.140625 128.550781 198.304688 124.558594 C 196.417969 124.558594 194.757812 124.0625 193.316406 123.0625 C 191.707031 121.898438 191.152344 120.402344 191.648438 118.574219 C 191.648438 118.523438 191.648438 118.464844 191.648438 118.410156 L 191.648438 118.324219 C 191.761719 117.996094 191.875 117.660156 191.984375 117.328125 L 192.148438 117.082031 C 192.316406 116.578125 192.484375 116.136719 192.644531 115.746094 C 193.644531 113.535156 195.03125 111.402344 196.808594 109.351562 C 196.863281 109.238281 196.921875 109.128906 196.976562 109.015625 C 197.082031 108.960938 197.140625 108.90625 197.140625 108.855469 C 197.25 108.796875 197.363281 108.710938 197.472656 108.601562 C 199.910156 105.886719 202.90625 103.449219 206.457031 101.292969 C 206.957031 101.84375 207.648438 102.730469 208.539062 103.949219 C 209.257812 105.054688 209.867188 106 210.363281 106.773438 C 210.363281 105.664062 210.203125 104.613281 209.867188 103.613281 C 209.59375 102.566406 209.089844 101.621094 208.371094 100.789062 C 208.09375 100.460938 207.734375 100.042969 207.289062 99.542969 C 206.625 99.601562 205.925781 99.683594 205.210938 99.796875 C 203.65625 100.019531 202.214844 100.375 200.886719 100.875 C 198.941406 103.421875 197.113281 104.972656 195.390625 105.527344 C 193.949219 105.917969 193.230469 106.078125 193.230469 106.027344 C 189.792969 109.296875 188.070312 113.175781 188.070312 117.660156 C 188.070312 118.769531 188.597656 120.929688 189.65625 124.140625 C 190.761719 127.359375 191.320312 129.488281 191.320312 130.542969 C 191.320312 131.425781 190.511719 132.457031 188.902344 133.617188 C 187.300781 134.835938 185.90625 135.449219 184.746094 135.449219 C 181.972656 135.449219 177.367188 133.953125 170.933594 130.960938 C 166.113281 128.6875 162.066406 127.132812 158.789062 126.304688 C 159.125 126.636719 159.484375 126.96875 159.871094 127.300781 C 161.039062 128.296875 161.898438 129.070312 162.449219 129.628906 C 163.394531 130.457031 164.171875 131.261719 164.78125 132.039062 C 164.894531 133.480469 164.949219 135.363281 164.949219 137.691406 C 164.949219 140.515625 164.972656 142.398438 165.03125 143.339844 C 166.472656 147.4375 169.578125 150.511719 174.347656 152.566406 C 178.285156 154.28125 182.71875 155.058594 187.660156 154.890625 C 190.761719 154.945312 193.339844 154.558594 195.390625 153.726562 C 198.332031 152.617188 200.023438 150.820312 200.46875 148.328125 " />
- <path style="
- stroke: none;
- fill-rule: evenodd;
- fill: rgb(9.799194%, 12.548828%, 24.308777%);
- fill-opacity: 1;
- "
- d="M 408.847656 200.097656 L 408.683594 200.433594 L 391.878906 199.519531 C 393.152344 200.242188 393.792969 200.898438 393.792969 201.511719 C 393.792969 202.785156 392.902344 204.339844 391.132812 206.164062 C 390.851562 206.5 390.578125 206.828125 390.296875 207.164062 C 391.1875 208.269531 391.878906 209.101562 392.375 209.652344 C 392.65625 209.878906 392.878906 210.070312 393.039062 210.238281 L 398.035156 216.632812 L 408.847656 219.625 L 408.933594 219.625 C 410.929688 220.074219 412.921875 220.128906 414.917969 219.792969 C 415.113281 219.773438 415.289062 219.757812 415.460938 219.753906 C 417.199219 219.636719 418.542969 219.957031 419.5 220.710938 C 419.664062 220.761719 419.804688 220.847656 419.910156 220.960938 C 419.636719 221.179688 419.386719 221.34375 419.164062 221.457031 C 419.050781 221.511719 418.96875 221.539062 418.914062 221.539062 C 418.527344 222.203125 418.054688 222.785156 417.503906 223.285156 C 417 224.113281 416.671875 225.027344 416.503906 226.027344 C 416.304688 226.882812 416.105469 227.746094 415.917969 228.605469 C 415.269531 231.800781 414.769531 235.015625 414.421875 238.242188 C 414.058594 241.203125 413.855469 244.15625 413.800781 247.09375 C 413.734375 249.167969 413.75 251.230469 413.835938 253.285156 L 414.003906 255.03125 C 414.035156 255.457031 414.046875 255.882812 414.046875 256.320312 C 414.101562 257.921875 414.058594 259.5 413.921875 261.054688 C 413.660156 264.265625 412.996094 267.382812 411.929688 270.402344 C 411.695312 271.011719 411.496094 271.621094 411.34375 272.234375 C 410.992188 273.828125 410.9375 275.464844 411.175781 277.136719 L 411.175781 277.46875 C 411.289062 277.636719 411.34375 277.855469 411.34375 278.132812 L 415.835938 294.835938 C 416.390625 294.003906 416.582031 293.0625 416.421875 292.011719 C 416.140625 291.011719 415.53125 290.265625 414.589844 289.769531 L 418.585938 290.851562 C 419.027344 290.625 419.5 290.429688 419.996094 290.265625 C 422.046875 289.324219 424.097656 288.601562 426.15625 288.105469 C 424.320312 285 422.6875 281.511719 421.246094 277.636719 C 421.300781 274.640625 421.269531 271.234375 421.160156 267.410156 C 421.148438 267.132812 421.136719 266.859375 421.117188 266.578125 C 420.984375 262.203125 420.90625 259.015625 420.867188 257.023438 C 420.84375 256.15625 420.828125 255.523438 420.828125 255.113281 C 420.828125 254.761719 420.964844 253.777344 421.246094 252.164062 C 421.59375 249.925781 422.203125 246.492188 423.074219 241.859375 C 423.148438 241.382812 423.230469 240.898438 423.320312 240.402344 C 424.988281 231.484375 425.820312 225.835938 425.820312 223.449219 C 425.820312 223.261719 425.820312 223.066406 425.820312 222.867188 C 425.710938 220.363281 424.921875 217.78125 423.449219 215.140625 C 422.539062 213.472656 421.363281 211.785156 419.910156 210.070312 C 418.191406 208.019531 416.253906 206.164062 414.089844 204.507812 C 412.980469 202.617188 412.425781 201.066406 412.425781 199.851562 C 412.425781 199.351562 412.398438 198.910156 412.34375 198.519531 Z M 386.597656 263.753906 C 386.953125 264.980469 387.296875 266.230469 387.636719 267.492188 C 387.949219 268.695312 388.242188 269.898438 388.511719 271.109375 C 388.800781 272.5 389.066406 273.898438 389.296875 275.308594 C 389.488281 276.40625 389.652344 277.515625 389.796875 278.632812 C 390.058594 280.570312 390.285156 282.449219 390.464844 284.28125 C 390.59375 285.554688 390.703125 286.800781 390.796875 288.023438 C 390.796875 288.851562 390.964844 289.65625 391.292969 290.429688 C 391.851562 292.316406 392.375 294.285156 392.878906 296.332031 C 393.097656 297.550781 393.511719 298.65625 394.121094 299.65625 C 394.457031 299.988281 394.816406 300.320312 395.203125 300.65625 L 396.867188 301.152344 L 397.121094 301.238281 C 399.617188 301.125 402.113281 300.984375 404.605469 300.816406 C 404.277344 299.765625 403.996094 298.796875 403.773438 297.910156 C 401.910156 291.671875 400.332031 285.480469 399.03125 279.335938 C 398.433594 276.414062 397.894531 273.507812 397.410156 270.613281 C 397.171875 269.183594 396.949219 267.757812 396.746094 266.332031 C 396.332031 263.429688 395.984375 260.535156 395.707031 257.648438 C 395.152344 252.007812 394.847656 246.414062 394.792969 240.863281 C 394.792969 240.285156 394.792969 239.722656 394.792969 239.160156 C 394.792969 236.167969 394.472656 233.859375 393.832031 232.214844 C 393.609375 231.652344 393.351562 231.171875 393.039062 230.765625 C 392.214844 229.597656 390.324219 228.523438 387.390625 227.523438 C 384.722656 226.523438 382.089844 225.417969 379.484375 224.203125 C 378.59375 222.089844 378.152344 220.433594 378.152344 219.210938 C 378.152344 217.273438 379.707031 214.222656 382.808594 210.070312 C 382.921875 209.90625 383.03125 209.742188 383.144531 209.574219 L 374.078125 209.574219 C 370.472656 208.246094 366.839844 207.132812 363.179688 206.246094 C 362.957031 206.195312 362.765625 206.140625 362.597656 206.082031 C 360.042969 206.910156 357.550781 206.46875 355.113281 204.753906 L 355.027344 204.667969 C 354.914062 204.5625 354.777344 204.476562 354.609375 204.417969 L 336.5625 191.039062 C 336.5625 194.351562 336.988281 197.59375 337.851562 200.761719 C 338.347656 202.613281 339.003906 204.441406 339.804688 206.246094 C 340.75 208.628906 342.242188 210.628906 344.296875 212.230469 C 346.238281 213.726562 348.289062 215.199219 350.453125 216.632812 C 354.609375 219.351562 358.910156 221.675781 363.347656 223.617188 C 365.898438 224.78125 368.390625 225.972656 370.832031 227.1875 C 372.996094 228.300781 375.019531 229.710938 376.90625 231.429688 C 379.878906 234.128906 383.277344 235.695312 387.09375 236.121094 C 387.191406 236.140625 387.289062 236.15625 387.390625 236.167969 C 386.140625 239.566406 385.226562 243.085938 384.644531 246.71875 C 384.550781 247.304688 384.46875 247.886719 384.394531 248.464844 C 383.890625 252.398438 384.25 256.304688 385.476562 260.183594 C 385.855469 261.355469 386.230469 262.546875 386.597656 263.753906 " />
- <path style="
- stroke: none;
- fill-rule: evenodd;
- fill: rgb(9.799194%, 9.799194%, 10.5896%);
- fill-opacity: 1;
- "
- d="M 360.769531 79.765625 L 355.859375 85 C 356.082031 87.382812 356.554688 89.769531 357.277344 92.148438 C 357.9375 94.417969 358.824219 96.691406 359.9375 98.964844 C 361.042969 101.34375 362.515625 103.535156 364.34375 105.527344 L 365.839844 104.285156 C 367.949219 103.339844 370.113281 102.480469 372.332031 101.707031 C 372.773438 101.484375 373.21875 101.261719 373.660156 101.042969 C 372.828125 100.484375 372.027344 99.988281 371.25 99.542969 C 370.582031 99.042969 369.917969 98.515625 369.253906 97.964844 C 367.363281 96.46875 365.648438 94.699219 364.09375 92.648438 C 362.597656 90.710938 361.546875 88.6875 360.933594 86.582031 C 360.105469 84.199219 360.042969 81.925781 360.769531 79.765625 " />
- <path style="
- stroke: none;
- fill-rule: evenodd;
- fill: rgb(22.749329%, 23.529053%, 27.839661%);
- fill-opacity: 1;
- "
- d="M 373.660156 101.042969 C 373.828125 101.148438 373.964844 101.261719 374.078125 101.371094 C 378.347656 103.476562 382.285156 103.230469 385.890625 100.628906 C 388.769531 97.523438 389.441406 94.195312 387.886719 90.65625 C 385.667969 85.71875 382.257812 81.925781 377.652344 79.269531 C 372.554688 76.386719 367.363281 76.246094 362.097656 78.851562 C 361.652344 79.132812 361.265625 79.378906 360.933594 79.597656 L 360.769531 79.765625 C 360.042969 81.925781 360.105469 84.199219 360.933594 86.582031 C 361.546875 88.6875 362.597656 90.710938 364.09375 92.648438 C 365.648438 94.699219 367.363281 96.46875 369.253906 97.964844 C 369.917969 98.515625 370.582031 99.042969 371.25 99.542969 C 372.027344 99.988281 372.828125 100.484375 373.660156 101.042969 Z M 355.859375 85 C 354.859375 87.160156 354.167969 89.519531 353.777344 92.066406 C 353.503906 94.335938 353.777344 96.636719 354.609375 98.964844 L 355.195312 100.628906 L 357.109375 103.949219 C 356.554688 102.621094 356.277344 101.652344 356.277344 101.042969 C 356.386719 100.429688 356.523438 99.960938 356.691406 99.628906 C 356.910156 99.125 357.277344 98.90625 357.773438 98.964844 C 358.269531 98.964844 358.632812 99.042969 358.855469 99.210938 C 359.632812 100.15625 360.074219 101.179688 360.183594 102.285156 C 360.351562 104.558594 361.265625 106.441406 362.925781 107.9375 L 364.34375 105.527344 C 362.515625 103.535156 361.042969 101.34375 359.9375 98.964844 C 358.824219 96.691406 357.9375 94.417969 357.277344 92.148438 C 356.554688 89.769531 356.082031 87.382812 355.859375 85 " />
- <path style="
- stroke: none;
- fill-rule: evenodd;
- fill: rgb(93.328857%, 53.729248%, 37.649536%);
- fill-opacity: 1;
- "
- d="M 367.007812 193.03125 L 366.921875 193.117188 C 362.542969 196.113281 360.351562 199.019531 360.351562 201.84375 C 360.351562 203.785156 361.097656 205.195312 362.597656 206.082031 C 362.765625 206.140625 362.957031 206.195312 363.179688 206.246094 C 366.839844 207.132812 370.472656 208.246094 374.078125 209.574219 L 386.308594 209.574219 C 386.75 209.351562 387.191406 209.125 387.636719 208.910156 C 386.804688 208.519531 385.78125 208.101562 384.5625 207.660156 C 383.890625 207.492188 383.171875 207.277344 382.398438 206.996094 C 375.910156 205.222656 372.273438 204.058594 371.496094 203.507812 C 369.167969 201.898438 367.589844 200.542969 366.753906 199.433594 C 366.425781 198.882812 366.226562 198.351562 366.175781 197.855469 C 366.675781 196.191406 366.953125 194.640625 367.007812 193.199219 C 367.007812 193.144531 367.007812 193.09375 367.007812 193.03125 Z M 127.179688 282.867188 C 126.90625 283.257812 126.625 283.648438 126.351562 284.03125 C 125.519531 285.363281 125.792969 286.585938 127.179688 287.691406 C 127.957031 288.355469 129.261719 289.074219 131.089844 289.851562 C 132.53125 290.238281 133.917969 289.960938 135.25 289.019531 C 136.46875 288.132812 137.359375 286.96875 137.914062 285.53125 C 138.6875 283.808594 139.738281 281.261719 141.070312 277.878906 C 142.460938 274.394531 143.511719 271.898438 144.234375 270.402344 C 144.84375 269.074219 145.148438 267.660156 145.148438 266.164062 C 145.097656 264.835938 144.816406 263.480469 144.316406 262.089844 C 143.429688 264.089844 142.375 267.027344 141.15625 270.902344 C 140.820312 271.789062 140.019531 274.613281 138.746094 279.382812 C 136.96875 283.589844 134.476562 285.695312 131.257812 285.695312 C 130.703125 285.695312 129.34375 284.753906 127.179688 282.867188 Z M 432.558594 173.921875 C 430.175781 178.851562 427.925781 181.59375 425.820312 182.148438 C 425.707031 182.203125 425.570312 182.257812 425.402344 182.316406 C 424.800781 182.503906 424.328125 182.671875 423.992188 182.8125 C 423.820312 182.867188 423.683594 182.921875 423.570312 182.980469 C 423.570312 183.035156 423.542969 183.121094 423.488281 183.226562 C 422.992188 183.78125 422.296875 185.390625 421.40625 188.046875 C 421.246094 188.4375 421.101562 188.878906 420.992188 189.378906 L 420.992188 189.710938 C 421.046875 189.933594 421.4375 190.046875 422.160156 190.046875 C 425.03125 190.046875 427.445312 188.671875 429.398438 185.929688 C 429.902344 185.226562 430.375 184.433594 430.808594 183.5625 C 432.195312 179.128906 432.886719 176.882812 432.886719 176.828125 C 432.886719 176.328125 432.78125 175.359375 432.558594 173.921875 Z M 365.839844 104.285156 C 365.898438 104.335938 365.929688 104.390625 365.929688 104.445312 C 366.203125 104.835938 366.867188 105.167969 367.921875 105.445312 C 373.410156 106.832031 378.789062 106.496094 384.058594 104.445312 C 384.394531 104.335938 384.753906 104.171875 385.140625 103.949219 C 385.699219 102.730469 385.941406 101.621094 385.890625 100.628906 C 382.285156 103.230469 378.347656 103.476562 374.078125 101.371094 C 373.964844 101.261719 373.828125 101.148438 373.660156 101.042969 C 373.21875 101.261719 372.773438 101.484375 372.332031 101.707031 C 370.113281 102.480469 367.949219 103.339844 365.839844 104.285156 Z M 155.632812 121.980469 L 154.214844 124.558594 C 154.046875 124.835938 153.910156 125.085938 153.800781 125.304688 C 154.023438 125.972656 154.269531 126.691406 154.550781 127.46875 C 156.046875 132.007812 156.792969 135.746094 156.792969 138.683594 C 156.792969 139.460938 156.351562 141.84375 155.464844 145.835938 C 155.519531 145.773438 155.578125 145.722656 155.632812 145.664062 L 156.046875 145.085938 C 158.484375 141.925781 160.070312 139.820312 160.785156 138.769531 C 162.507812 136.386719 163.835938 134.144531 164.78125 132.039062 C 164.171875 131.261719 163.394531 130.457031 162.449219 129.628906 C 161.898438 129.070312 161.039062 128.296875 159.871094 127.300781 C 159.484375 126.96875 159.125 126.636719 158.789062 126.304688 C 158.011719 125.527344 157.347656 124.78125 156.792969 124.0625 Z M 198.886719 154.472656 L 198.972656 154.472656 C 201.464844 154.03125 203.464844 152.453125 204.957031 149.738281 C 206.015625 146.527344 206.542969 144.863281 206.542969 144.753906 C 206.542969 133.894531 203.324219 125.277344 196.890625 118.90625 C 195.390625 117.46875 193.980469 116.417969 192.644531 115.746094 C 192.484375 116.136719 192.316406 116.578125 192.148438 117.082031 L 191.984375 117.328125 C 191.875 117.660156 191.761719 117.996094 191.648438 118.324219 L 191.648438 118.410156 C 191.648438 118.464844 191.648438 118.523438 191.648438 118.574219 C 191.152344 120.402344 191.707031 121.898438 193.316406 123.0625 C 194.757812 124.0625 196.417969 124.558594 198.304688 124.558594 C 199.140625 128.550781 199.96875 133.699219 200.800781 140.019531 C 200.855469 140.570312 201.214844 142.148438 201.882812 144.753906 C 202.382812 146.75 202.601562 148.382812 202.546875 149.65625 C 202.046875 150.929688 201.132812 152.230469 199.804688 153.5625 C 199.691406 153.671875 199.582031 153.753906 199.46875 153.808594 C 199.414062 153.863281 199.386719 153.921875 199.386719 153.976562 C 199.21875 154.089844 199.082031 154.226562 198.972656 154.394531 Z M 164.53125 206.828125 C 165.417969 206.332031 166.472656 205.804688 167.691406 205.25 C 167.746094 205.195312 167.832031 205.140625 167.945312 205.085938 C 168.050781 204.972656 168.191406 204.890625 168.355469 204.835938 C 171.183594 203.339844 173.488281 202.257812 175.261719 201.59375 C 176.816406 200.875 177.953125 200.320312 178.671875 199.929688 C 180.003906 199.265625 181.113281 198.601562 182 197.9375 C 183.496094 195.945312 184.328125 193.617188 184.496094 190.957031 L 184.496094 190.878906 C 184.496094 190.542969 184.496094 190.261719 184.496094 190.046875 C 184.550781 189.933594 184.550781 189.847656 184.496094 189.796875 C 184.550781 189.238281 184.523438 188.6875 184.414062 188.132812 C 184.359375 187.246094 184.21875 186.414062 184 185.636719 C 183.886719 185.140625 183.71875 184.644531 183.496094 184.144531 C 183.167969 184.144531 182.832031 184.171875 182.5 184.226562 C 181.722656 184.890625 180.753906 185.691406 179.585938 186.636719 C 177.535156 188.132812 176.230469 189.132812 175.675781 189.628906 C 174.957031 190.183594 173.929688 191.039062 172.601562 192.207031 C 171.4375 193.144531 170.269531 193.640625 169.105469 193.703125 C 169.332031 192.480469 170.1875 191.238281 171.6875 189.957031 C 172.679688 189.132812 173.265625 188.628906 173.433594 188.460938 C 174.097656 187.796875 174.570312 187.191406 174.84375 186.636719 C 173.570312 186.914062 172.015625 187.964844 170.1875 189.796875 C 168.304688 191.566406 166.722656 192.617188 165.445312 192.953125 L 165.527344 192.207031 C 165.527344 191.984375 165.558594 191.816406 165.613281 191.703125 C 165.894531 190.820312 166.472656 189.878906 167.359375 188.878906 C 167.472656 188.824219 167.585938 188.742188 167.691406 188.628906 C 168.355469 188.078125 168.828125 187.636719 169.105469 187.300781 L 169.441406 186.804688 C 169.714844 186.523438 169.941406 186.25 170.109375 185.972656 L 167.945312 187.300781 C 167.664062 187.636719 167.21875 188.246094 166.609375 189.132812 C 166 190.070312 165.445312 190.734375 164.949219 191.125 C 164.171875 191.621094 163.339844 191.816406 162.449219 191.703125 C 162.5625 191.207031 162.730469 190.710938 162.953125 190.210938 L 155.378906 194.535156 C 154.496094 195.085938 153.164062 194.976562 151.386719 194.199219 C 150.890625 194.085938 150.136719 193.753906 149.144531 193.199219 C 149.011719 193.296875 148.890625 193.398438 148.769531 193.496094 C 147.601562 194.363281 146.613281 195.097656 145.8125 195.695312 C 146.644531 196.304688 147.589844 196.855469 148.644531 197.355469 C 149.253906 197.632812 149.890625 197.882812 150.554688 198.105469 C 151.277344 198.328125 152.027344 198.519531 152.804688 198.6875 C 153.246094 198.792969 155.578125 199.265625 159.789062 200.097656 C 159.984375 200.132812 160.167969 200.179688 160.328125 200.226562 C 162.273438 200.625 163.394531 201.058594 163.699219 201.511719 C 163.78125 201.570312 163.863281 201.832031 163.949219 202.300781 C 164.121094 203.132812 164.3125 204.636719 164.53125 206.828125 Z M 185.746094 103.949219 C 188.183594 103.894531 190.761719 103.503906 193.476562 102.789062 C 194.703125 102.453125 195.839844 101.898438 196.890625 101.125 C 197.890625 100.347656 198.722656 99.433594 199.386719 98.378906 C 200.605469 96.386719 200.828125 94.449219 200.054688 92.5625 C 199.996094 92.507812 199.910156 92.480469 199.804688 92.480469 C 198.195312 91.816406 196.390625 91.480469 194.398438 91.480469 C 190.792969 91.480469 188.214844 93.117188 186.660156 96.386719 C 185.769531 98.210938 185.328125 100.101562 185.328125 102.039062 C 185.328125 102.480469 185.441406 103.035156 185.660156 103.699219 C 185.714844 103.8125 185.746094 103.894531 185.746094 103.949219 Z M 160.953125 102.246094 C 160.515625 105.261719 159.933594 107.964844 159.207031 110.351562 C 159.152344 110.40625 159.09375 110.511719 159.042969 110.679688 C 158.933594 111.121094 158.789062 111.566406 158.628906 112.007812 C 158.734375 111.898438 158.820312 111.84375 158.875 111.84375 L 159.125 111.429688 C 159.238281 111.320312 159.34375 111.207031 159.457031 111.097656 C 159.789062 110.707031 160.152344 110.320312 160.535156 109.929688 L 161.371094 108.769531 C 161.59375 108.488281 161.785156 108.242188 161.953125 108.023438 C 163.601562 105.449219 164.476562 102.832031 164.574219 100.164062 C 164.59375 99.597656 164.578125 99.023438 164.53125 98.464844 C 163.867188 98.300781 163.449219 97.882812 163.285156 97.21875 C 163.117188 96.828125 163.058594 96.164062 163.117188 95.226562 C 163.171875 94.113281 163.171875 93.367188 163.117188 92.976562 C 163.003906 92.089844 162.675781 91.425781 162.121094 90.984375 C 161.566406 97.019531 161.203125 100.570312 161.039062 101.621094 C 161.007812 101.835938 160.984375 102.042969 160.953125 102.246094 Z M 158.875 84.671875 C 159.484375 85.113281 160.152344 85.582031 160.871094 86.082031 C 165.308594 89.074219 170.574219 90.570312 176.675781 90.570312 C 177.285156 90.570312 177.894531 90.457031 178.503906 90.238281 C 176.621094 90.015625 175.234375 89.738281 174.347656 89.40625 C 172.738281 88.90625 171.519531 88.078125 170.6875 86.910156 L 170.523438 86.664062 C 167.191406 86.054688 164.699219 85.304688 163.035156 84.421875 L 159.710938 81.261719 C 159.457031 80.820312 159.261719 80.347656 159.125 79.851562 C 159.011719 79.441406 158.933594 79.007812 158.875 78.558594 C 158.820312 78.820312 158.789062 79.054688 158.789062 79.269531 C 158.570312 81.316406 158.597656 83.117188 158.875 84.671875 Z M 118.277344 267.410156 C 118.167969 268.410156 117.589844 269.710938 116.53125 271.316406 C 116.476562 271.429688 116.394531 271.539062 116.285156 271.652344 C 118.003906 273.8125 119.335938 275.109375 120.273438 275.558594 C 122.546875 271.675781 124.238281 268.769531 125.351562 266.832031 C 127.234375 263.394531 128.484375 260.625 129.09375 258.519531 C 129.371094 257.527344 129.566406 256.136719 129.675781 254.367188 C 129.902344 251.597656 130.007812 250.15625 130.007812 250.042969 C 130.175781 249.546875 130.34375 249.101562 130.507812 248.714844 C 130.753906 248.175781 131.003906 247.738281 131.257812 247.386719 C 131.535156 244.945312 132.089844 242.152344 132.921875 238.992188 C 133.699219 236.167969 134.25 234.0625 134.582031 232.675781 C 135.195312 230.238281 135.636719 228.101562 135.917969 226.277344 C 136.144531 225.597656 136.347656 224.925781 136.542969 224.28125 C 136.507812 224.390625 136.464844 224.5 136.414062 224.613281 C 134.476562 222.617188 132.921875 219.242188 131.757812 214.472656 C 130.703125 206.164062 130.175781 201.898438 130.175781 201.679688 C 130.175781 201.199219 130.359375 200.339844 130.71875 199.105469 C 130.726562 199.042969 130.742188 198.988281 130.757812 198.9375 C 131.144531 197.550781 131.34375 196.609375 131.34375 196.113281 C 131.34375 192.589844 130.328125 189.863281 128.304688 187.925781 C 127.84375 187.480469 127.332031 187.078125 126.761719 186.71875 C 126.042969 186.332031 125.433594 185.890625 124.933594 185.390625 C 124.816406 185.511719 124.695312 185.636719 124.558594 185.765625 C 123.878906 186.460938 123.085938 187.140625 122.1875 187.796875 C 120.929688 189.148438 119.945312 190.699219 119.238281 192.453125 C 118.632812 193.941406 118.234375 195.574219 118.03125 197.355469 C 117.644531 200.515625 117.894531 204.027344 118.78125 207.910156 C 119.335938 210.574219 119.609375 214.007812 119.609375 218.214844 C 119.609375 223.585938 119.664062 227.023438 119.777344 228.523438 C 119.777344 230.515625 119.859375 232.949219 120.023438 235.832031 C 120.082031 237.410156 120.25 239.769531 120.527344 242.898438 C 120.523438 242.953125 120.523438 243.007812 120.527344 243.066406 C 120.800781 248.933594 120.554688 253.78125 119.777344 257.605469 C 119.71875 258.769531 119.472656 260.375 119.03125 262.425781 C 118.640625 264.753906 118.390625 266.414062 118.277344 267.410156 " />
- <path style="
- stroke: none;
- fill-rule: evenodd;
- fill: rgb(97.24884%, 60.389709%, 45.878601%);
- fill-opacity: 1;
- "
- d="M 423.570312 182.980469 C 423.683594 182.921875 423.820312 182.867188 423.992188 182.8125 C 424.328125 182.671875 424.800781 182.503906 425.402344 182.316406 C 425.570312 182.257812 425.707031 182.203125 425.820312 182.148438 C 427.925781 181.59375 430.175781 178.851562 432.558594 173.921875 C 432.445312 173.089844 432.363281 172.367188 432.308594 171.761719 C 432.308594 171.375 432.332031 170.984375 432.390625 170.597656 C 429.503906 171.597656 427.09375 174.144531 425.152344 178.242188 C 424.785156 178.925781 424.285156 180.398438 423.65625 182.644531 C 423.632812 182.75 423.605469 182.863281 423.570312 182.980469 Z M 164.53125 206.828125 C 164.3125 204.636719 164.121094 203.132812 163.949219 202.300781 C 163.863281 201.832031 163.78125 201.570312 163.699219 201.511719 C 163.394531 201.058594 162.273438 200.625 160.328125 200.226562 C 160.167969 200.179688 159.984375 200.132812 159.789062 200.097656 C 155.578125 199.265625 153.246094 198.792969 152.804688 198.6875 C 152.027344 198.519531 151.277344 198.328125 150.554688 198.105469 C 149.890625 197.882812 149.253906 197.632812 148.644531 197.355469 C 147.589844 196.855469 146.644531 196.304688 145.8125 195.695312 C 145.757812 195.75 145.730469 195.808594 145.730469 195.859375 C 145.214844 196.277344 144.714844 196.695312 144.234375 197.105469 C 143.132812 198.09375 142.132812 199.09375 141.238281 200.097656 C 140.183594 201.246094 139.261719 202.40625 138.496094 203.589844 C 138.289062 203.890625 138.09375 204.195312 137.914062 204.507812 C 137.46875 205.164062 137.109375 205.890625 136.832031 206.667969 C 136.332031 208.214844 136.078125 209.90625 136.078125 211.734375 C 136.191406 213.839844 136.695312 216.109375 137.578125 218.546875 C 137.632812 218.714844 137.71875 218.90625 137.832031 219.128906 C 138.105469 221.675781 138.246094 224.667969 138.246094 228.101562 C 138.246094 228.660156 138.160156 231.621094 137.992188 237 C 136.90625 244.128906 136.121094 249.019531 135.621094 251.667969 C 135.578125 251.855469 135.53125 252.039062 135.5 252.203125 C 135.390625 252.703125 135.277344 253.230469 135.164062 253.78125 C 134.113281 258.769531 132.839844 263.144531 131.34375 266.914062 C 130.839844 268.074219 130.453125 269.515625 130.175781 271.234375 C 130.007812 272.234375 129.757812 273.726562 129.429688 275.71875 C 129.429688 276.109375 129.371094 276.46875 129.261719 276.800781 C 128.8125 279.238281 128.125 281.261719 127.179688 282.867188 C 129.34375 284.753906 130.703125 285.695312 131.257812 285.695312 C 134.476562 285.695312 136.96875 283.589844 138.746094 279.382812 C 140.019531 274.613281 140.820312 271.789062 141.15625 270.902344 C 142.375 267.027344 143.429688 264.089844 144.316406 262.089844 C 144.316406 262.039062 144.316406 261.984375 144.316406 261.929688 C 144.691406 260.496094 145.121094 259.015625 145.605469 257.480469 C 146.433594 254.945312 147.417969 252.269531 148.558594 249.460938 C 149.671875 246.472656 151.386719 242.449219 153.71875 237.410156 C 154.605469 234.589844 155.128906 231.621094 155.296875 228.523438 C 155.410156 225.53125 155.160156 222.539062 154.550781 219.546875 C 154.4375 218.769531 153.964844 217.800781 153.132812 216.632812 C 152.300781 215.472656 151.804688 214.527344 151.636719 213.8125 C 152.3125 213.351562 153.03125 212.894531 153.800781 212.4375 C 155.792969 211.230469 158.09375 210.03125 160.703125 208.824219 C 161.246094 208.589844 161.921875 208.253906 162.746094 207.828125 C 163.285156 207.535156 163.882812 207.199219 164.53125 206.828125 Z M 155.464844 145.835938 C 156.351562 141.84375 156.792969 139.460938 156.792969 138.683594 C 156.792969 135.746094 156.046875 132.007812 154.550781 127.46875 C 154.269531 126.691406 154.023438 125.972656 153.800781 125.304688 C 151.691406 129.296875 149.503906 133.839844 147.230469 138.9375 C 146.949219 139.707031 144.539062 145.5 139.988281 156.304688 C 139.050781 157.136719 137.246094 158.21875 134.582031 159.546875 C 133.089844 160.265625 131.808594 160.988281 130.757812 161.707031 L 132.671875 162.699219 C 133.78125 163.371094 134.722656 164.035156 135.5 164.695312 L 138.246094 163.117188 C 139.523438 162.347656 141.683594 162.84375 144.730469 164.613281 L 146.066406 165.445312 C 146.675781 164.394531 147.035156 163.257812 147.148438 162.035156 C 147.203125 161.707031 147.308594 161.261719 147.476562 160.707031 C 147.535156 160.597656 147.558594 160.515625 147.558594 160.457031 L 147.644531 160.292969 C 147.867188 159.347656 148.007812 158.738281 148.0625 158.464844 C 148.839844 156.191406 149.976562 153.863281 151.46875 151.480469 C 152.414062 149.984375 153.742188 148.101562 155.464844 145.835938 Z M 387.636719 208.910156 C 388.582031 208.519531 389.464844 207.941406 390.296875 207.164062 C 390.578125 206.828125 390.851562 206.5 391.132812 206.164062 C 392.902344 204.339844 393.792969 202.785156 393.792969 201.511719 C 393.792969 200.898438 393.152344 200.242188 391.878906 199.519531 C 391.046875 199.019531 389.90625 198.519531 388.472656 198.023438 C 386.804688 197.464844 383.007812 196.414062 377.074219 194.863281 C 377.625 194.199219 378.097656 193.558594 378.488281 192.953125 C 379.707031 191.34375 380.511719 189.957031 380.902344 188.796875 C 380.511719 188.742188 380.066406 188.714844 379.566406 188.714844 C 379.398438 188.660156 379.234375 188.660156 379.066406 188.714844 C 378.347656 188.660156 377.601562 188.6875 376.824219 188.796875 C 375.769531 188.910156 374.6875 189.183594 373.578125 189.628906 C 371.632812 190.292969 369.613281 191.316406 367.507812 192.703125 C 367.339844 192.816406 367.171875 192.925781 367.007812 193.03125 C 367.007812 193.09375 367.007812 193.144531 367.007812 193.199219 C 366.953125 194.640625 366.675781 196.191406 366.175781 197.855469 C 366.226562 198.351562 366.425781 198.882812 366.753906 199.433594 C 367.589844 200.542969 369.167969 201.898438 371.496094 203.507812 C 372.273438 204.058594 375.910156 205.222656 382.398438 206.996094 C 383.171875 207.277344 383.890625 207.492188 384.5625 207.660156 C 385.78125 208.101562 386.804688 208.519531 387.636719 208.910156 Z M 357.109375 103.949219 C 357.71875 105.5 358.410156 106.167969 359.183594 105.941406 L 360.933594 108.519531 C 360.988281 108.796875 361.074219 109.128906 361.179688 109.515625 C 361.179688 109.570312 361.210938 109.625 361.265625 109.679688 L 361.347656 109.929688 C 361.402344 110.152344 361.546875 110.488281 361.765625 110.929688 C 362.316406 112.09375 363.070312 113.175781 364.007812 114.171875 C 364.457031 114.5625 364.953125 114.945312 365.511719 115.332031 L 371.167969 118.820312 C 372.941406 120.429688 374.910156 120.625 377.074219 119.40625 C 378.683594 118.464844 379.484375 117.027344 379.484375 115.082031 L 381.976562 115.332031 L 381.816406 109.929688 L 385.140625 103.949219 C 384.753906 104.171875 384.394531 104.335938 384.058594 104.445312 C 378.789062 106.496094 373.410156 106.832031 367.921875 105.445312 C 366.867188 105.167969 366.203125 104.835938 365.929688 104.445312 C 365.929688 104.390625 365.898438 104.335938 365.839844 104.285156 L 364.34375 105.527344 L 362.925781 107.9375 C 361.265625 106.441406 360.351562 104.558594 360.183594 102.285156 C 360.074219 101.179688 359.632812 100.15625 358.855469 99.210938 C 358.632812 99.042969 358.269531 98.964844 357.773438 98.964844 C 357.277344 98.90625 356.910156 99.125 356.691406 99.628906 C 356.523438 99.960938 356.386719 100.429688 356.277344 101.042969 C 356.277344 101.652344 356.554688 102.621094 357.109375 103.949219 Z M 192.644531 115.746094 C 193.980469 116.417969 195.390625 117.46875 196.890625 118.90625 C 203.324219 125.277344 206.542969 133.894531 206.542969 144.753906 C 206.542969 144.863281 206.015625 146.527344 204.957031 149.738281 C 203.464844 152.453125 201.464844 154.03125 198.972656 154.472656 C 198.691406 154.695312 198.386719 154.945312 198.058594 155.222656 L 196.890625 156.222656 C 196.722656 156.441406 196.503906 156.664062 196.226562 156.882812 C 196.167969 156.996094 196.058594 157.160156 195.894531 157.386719 C 195.28125 157.992188 194.367188 159.101562 193.148438 160.707031 L 188.324219 166.613281 C 186.210938 169.214844 184.304688 171.398438 182.582031 173.175781 L 182 173.839844 C 181.816406 173.996094 181.632812 174.148438 181.460938 174.296875 C 181.417969 174.335938 181.378906 174.378906 181.332031 174.421875 C 181.226562 174.527344 181.085938 174.640625 180.921875 174.753906 L 180.585938 175.167969 C 180.308594 175.390625 180.058594 175.609375 179.839844 175.832031 C 179.113281 176.554688 178.03125 176.9375 176.597656 177 C 176.207031 177 175.597656 177 174.761719 177 C 174.097656 177.050781 173.542969 177.136719 173.097656 177.242188 C 171.4375 177.296875 169.828125 177.632812 168.273438 178.242188 C 167.664062 178.464844 167.054688 178.746094 166.445312 179.074219 C 164.445312 180.125 162.617188 181.515625 160.953125 183.226562 L 162.699219 184.390625 C 161.921875 185.835938 161.511719 186.582031 161.449219 186.636719 C 161.066406 187.578125 160.984375 188.4375 161.203125 189.214844 C 162.257812 188.933594 163.308594 188.078125 164.363281 186.636719 C 165.582031 184.972656 166.582031 183.949219 167.359375 183.5625 C 166.808594 184.445312 165.863281 185.722656 164.53125 187.386719 C 163.867188 188.382812 163.339844 189.324219 162.953125 190.210938 C 162.730469 190.710938 162.5625 191.207031 162.449219 191.703125 C 163.339844 191.816406 164.171875 191.621094 164.949219 191.125 C 165.445312 190.734375 166 190.070312 166.609375 189.132812 C 167.21875 188.246094 167.664062 187.636719 167.945312 187.300781 C 168.105469 187.078125 168.21875 186.941406 168.273438 186.886719 C 168.996094 186.109375 169.714844 185.582031 170.4375 185.308594 C 170.324219 185.527344 170.214844 185.75 170.109375 185.972656 C 169.941406 186.25 169.714844 186.523438 169.441406 186.804688 L 169.105469 187.300781 C 168.828125 187.636719 168.355469 188.078125 167.691406 188.628906 C 167.585938 188.742188 167.472656 188.824219 167.359375 188.878906 C 166.472656 189.878906 165.894531 190.820312 165.613281 191.703125 C 165.558594 191.816406 165.527344 191.984375 165.527344 192.207031 L 165.445312 192.953125 C 166.722656 192.617188 168.304688 191.566406 170.1875 189.796875 C 172.015625 187.964844 173.570312 186.914062 174.84375 186.636719 C 174.570312 187.191406 174.097656 187.796875 173.433594 188.460938 C 173.265625 188.628906 172.679688 189.132812 171.6875 189.957031 C 170.1875 191.238281 169.332031 192.480469 169.105469 193.703125 C 170.269531 193.640625 171.4375 193.144531 172.601562 192.207031 C 173.929688 191.039062 174.957031 190.183594 175.675781 189.628906 C 176.230469 189.132812 177.535156 188.132812 179.585938 186.636719 C 180.753906 185.691406 181.722656 184.890625 182.5 184.226562 C 182.832031 184.171875 183.167969 184.144531 183.496094 184.144531 C 183.496094 183.980469 183.441406 183.8125 183.332031 183.644531 L 183.246094 183.476562 C 183.800781 182.867188 184.382812 182.230469 184.992188 181.570312 L 185.996094 180.652344 C 186.160156 180.539062 186.324219 180.433594 186.492188 180.320312 C 186.660156 180.15625 186.851562 180.015625 187.074219 179.90625 L 189.40625 178.074219 C 190.511719 177.296875 192.757812 175.800781 196.144531 173.589844 C 197.140625 172.925781 198.082031 172.289062 198.972656 171.679688 C 200.523438 170.679688 201.800781 169.734375 202.796875 168.851562 C 205.179688 167.023438 207.121094 165.117188 208.617188 163.117188 C 208.898438 162.730469 210.035156 161.453125 212.03125 159.292969 C 213.417969 157.800781 214.527344 156.496094 215.355469 155.386719 C 215.804688 153.226562 215.691406 150.429688 215.027344 146.996094 C 214.691406 145.109375 214.417969 143.699219 214.195312 142.757812 C 213.917969 141.09375 213.75 139.707031 213.695312 138.601562 C 213.359375 136.828125 213.085938 134.394531 212.863281 131.289062 C 212.582031 127.910156 212.335938 125.527344 212.117188 124.140625 C 211.835938 122.925781 211.699219 121.484375 211.699219 119.820312 C 211.699219 117.882812 211.699219 116.417969 211.699219 115.417969 C 211.699219 111.703125 211.253906 108.824219 210.363281 106.773438 C 209.867188 106 209.257812 105.054688 208.539062 103.949219 C 207.648438 102.730469 206.957031 101.84375 206.457031 101.292969 C 202.90625 103.449219 199.910156 105.886719 197.472656 108.601562 C 197.363281 108.710938 197.25 108.796875 197.140625 108.855469 C 197.140625 108.90625 197.082031 108.960938 196.976562 109.015625 C 196.921875 109.128906 196.863281 109.238281 196.808594 109.351562 C 195.03125 111.402344 193.644531 113.535156 192.644531 115.746094 Z M 164.53125 98.464844 C 165.035156 98.558594 165.589844 98.804688 166.199219 99.210938 C 166.664062 99.507812 167.164062 99.890625 167.691406 100.375 C 168.914062 101.539062 169.941406 102.203125 170.773438 102.367188 C 171.4375 102.480469 172.214844 102.339844 173.097656 101.949219 C 174.097656 101.398438 174.84375 101.011719 175.347656 100.789062 C 178.175781 99.460938 180.644531 97.4375 182.75 94.722656 C 184.625 92.445312 186.082031 89.910156 187.117188 87.121094 C 187.21875 86.859375 187.320312 86.597656 187.40625 86.332031 C 187.40625 85.886719 187.40625 85.472656 187.40625 85.085938 C 187.132812 85.03125 186.851562 84.972656 186.574219 84.917969 C 185.964844 84.917969 185.386719 85.054688 184.832031 85.335938 C 184.21875 85.609375 183.582031 86.167969 182.917969 87 L 182.5 87.410156 C 182.164062 87.800781 181.75 88.296875 181.253906 88.90625 C 180.753906 89.464844 180.226562 89.875 179.671875 90.152344 L 179.171875 90.320312 L 179.089844 90.320312 C 178.921875 90.320312 178.730469 90.289062 178.503906 90.238281 C 177.894531 90.457031 177.285156 90.570312 176.675781 90.570312 C 170.574219 90.570312 165.308594 89.074219 160.871094 86.082031 C 160.152344 85.582031 159.484375 85.113281 158.875 84.671875 C 158.933594 84.835938 158.988281 85 159.042969 85.167969 C 159.542969 87.605469 160.566406 89.542969 162.121094 90.984375 C 162.675781 91.425781 163.003906 92.089844 163.117188 92.976562 C 163.171875 93.367188 163.171875 94.113281 163.117188 95.226562 C 163.058594 96.164062 163.117188 96.828125 163.285156 97.21875 C 163.449219 97.882812 163.867188 98.300781 164.53125 98.464844 " />
- <path style="
- stroke: none;
- fill-rule: evenodd;
- fill: rgb(80.389404%, 42.749023%, 28.62854%);
- fill-opacity: 1;
- "
- d="M 116.285156 271.652344 C 115.34375 273.257812 114.761719 274.476562 114.535156 275.308594 C 114.921875 276.800781 115.867188 278.046875 117.363281 279.046875 C 118.804688 280.097656 120.304688 280.460938 121.859375 280.128906 C 122.851562 279.847656 123.628906 279.101562 124.183594 277.878906 C 124.40625 277.550781 124.855469 276.527344 125.519531 274.808594 C 126.015625 273.421875 126.710938 271.761719 127.59375 269.820312 C 128.652344 267.714844 129.429688 266.164062 129.925781 265.167969 C 131.648438 261.234375 132.585938 257.828125 132.753906 254.945312 C 132.867188 254.390625 132.699219 253.839844 132.257812 253.285156 C 131.648438 252.734375 131.230469 252.261719 131.007812 251.875 C 130.972656 250.996094 130.996094 250.058594 131.089844 249.046875 C 131.125 248.511719 131.179688 247.960938 131.257812 247.386719 C 131.003906 247.738281 130.753906 248.175781 130.507812 248.714844 C 130.34375 249.101562 130.175781 249.546875 130.007812 250.042969 C 130.007812 250.15625 129.902344 251.597656 129.675781 254.367188 C 129.566406 256.136719 129.371094 257.527344 129.09375 258.519531 C 128.484375 260.625 127.234375 263.394531 125.351562 266.832031 C 124.238281 268.769531 122.546875 271.675781 120.273438 275.558594 C 119.335938 275.109375 118.003906 273.8125 116.285156 271.652344 Z M 155.046875 170.597656 C 154.9375 170.429688 154.855469 170.292969 154.800781 170.183594 C 152.636719 166.246094 150.082031 163.53125 147.148438 162.035156 C 147.035156 163.257812 146.675781 164.394531 146.066406 165.445312 Z M 371.167969 118.820312 L 365.511719 115.332031 C 364.953125 114.945312 364.457031 114.5625 364.007812 114.171875 C 363.070312 113.175781 362.316406 112.09375 361.765625 110.929688 C 361.546875 110.488281 361.402344 110.152344 361.347656 109.929688 L 361.265625 109.679688 C 361.210938 109.625 361.179688 109.570312 361.179688 109.515625 C 361.074219 109.128906 360.988281 108.796875 360.933594 108.519531 L 359.183594 105.941406 C 358.410156 106.167969 357.71875 105.5 357.109375 103.949219 L 355.195312 100.628906 C 355.027344 100.734375 354.804688 100.875 354.53125 101.042969 C 352.421875 102.589844 352.171875 105.613281 353.777344 110.097656 C 355.332031 113.867188 357.855469 116.691406 361.347656 118.574219 C 362.402344 119.074219 363.511719 119.515625 364.679688 119.902344 C 367.007812 120.625 369.167969 120.265625 371.167969 118.820312 Z M 175.347656 100.789062 C 175.734375 101.125 176.148438 101.398438 176.597656 101.621094 C 178.703125 102.949219 181.195312 103.699219 184.082031 103.863281 C 184.632812 103.917969 185.191406 103.949219 185.746094 103.949219 C 185.746094 103.894531 185.714844 103.8125 185.660156 103.699219 C 185.441406 103.035156 185.328125 102.480469 185.328125 102.039062 C 185.328125 100.101562 185.769531 98.210938 186.660156 96.386719 C 188.214844 93.117188 190.792969 91.480469 194.398438 91.480469 C 196.390625 91.480469 198.195312 91.816406 199.804688 92.480469 C 199.910156 92.480469 199.996094 92.507812 200.054688 92.5625 C 199.886719 92.121094 199.691406 91.707031 199.46875 91.320312 C 196.417969 89.046875 193.703125 86.886719 191.320312 84.835938 C 190.535156 85.476562 189.714844 85.90625 188.863281 86.125 C 188.390625 86.261719 187.902344 86.332031 187.40625 86.332031 C 187.320312 86.597656 187.21875 86.859375 187.117188 87.121094 C 186.082031 89.910156 184.625 92.445312 182.75 94.722656 C 180.644531 97.4375 178.175781 99.460938 175.347656 100.789062 Z M 128.429688 181.234375 C 128.332031 181.347656 128.234375 181.457031 128.136719 181.570312 C 127.9375 181.828125 127.753906 182.078125 127.59375 182.316406 C 126.875 183.3125 125.992188 184.339844 124.933594 185.390625 C 125.433594 185.890625 126.042969 186.332031 126.761719 186.71875 C 127.332031 187.078125 127.84375 187.480469 128.304688 187.925781 C 130.328125 189.863281 131.34375 192.589844 131.34375 196.113281 C 131.34375 196.609375 131.144531 197.550781 130.757812 198.9375 C 130.742188 198.988281 130.726562 199.042969 130.71875 199.105469 C 130.359375 200.339844 130.175781 201.199219 130.175781 201.679688 C 130.175781 201.898438 130.703125 206.164062 131.757812 214.472656 C 132.921875 219.242188 134.476562 222.617188 136.414062 224.613281 C 136.464844 224.5 136.507812 224.390625 136.542969 224.28125 L 136.582031 224.15625 C 136.671875 223.886719 136.753906 223.625 136.832031 223.371094 L 137.578125 218.546875 C 136.695312 216.109375 136.191406 213.839844 136.078125 211.734375 C 136.078125 209.90625 136.332031 208.214844 136.832031 206.667969 C 136.332031 205.277344 135.636719 204.027344 134.75 202.921875 C 134.800781 202.460938 134.96875 202.066406 135.25 201.714844 C 135.59375 201.320312 136.089844 201 136.75 200.761719 C 137.359375 200.488281 138.382812 200.265625 139.828125 200.097656 C 140.269531 200.097656 140.742188 200.097656 141.238281 200.097656 C 142.132812 199.09375 143.132812 198.09375 144.234375 197.105469 C 144.714844 196.695312 145.214844 196.277344 145.730469 195.859375 C 145.730469 195.808594 145.757812 195.75 145.8125 195.695312 C 146.613281 195.097656 147.601562 194.363281 148.769531 193.496094 C 148.890625 193.398438 149.011719 193.296875 149.144531 193.199219 C 149.085938 193.144531 149.007812 193.09375 148.894531 193.03125 L 128.429688 181.234375 " />
- <path style="
- stroke: none;
- fill-rule: evenodd;
- fill: rgb(20.779419%, 24.308777%, 49.798584%);
- fill-opacity: 1;
- "
- d="M 426.15625 288.105469 C 428.207031 287.441406 430.308594 286.914062 432.476562 286.527344 C 435.246094 286.136719 437.578125 284.976562 439.460938 283.039062 C 440.070312 282.480469 440.265625 281.792969 440.039062 280.960938 C 439.878906 280.511719 439.628906 280.128906 439.292969 279.792969 C 438.960938 279.40625 438.574219 279.074219 438.132812 278.796875 C 437.910156 278.574219 437.691406 278.300781 437.464844 277.964844 C 437.242188 276.140625 436.769531 274.445312 436.050781 272.898438 C 435.714844 272.234375 435.632812 271.597656 435.800781 270.988281 C 436.523438 266.5 437.050781 261.953125 437.378906 257.359375 C 437.386719 257.3125 437.386719 257.265625 437.378906 257.230469 C 437.578125 253.894531 437.746094 250.542969 437.882812 247.179688 C 437.945312 245.75 438 244.324219 438.046875 242.898438 C 438.050781 242.726562 438.050781 242.558594 438.046875 242.394531 C 438.125 239.574219 438.375 236.800781 438.796875 234.085938 C 438.875 233.523438 438.96875 232.988281 439.085938 232.46875 C 439.285156 231.453125 439.546875 230.527344 439.878906 229.683594 C 441.320312 225.914062 441.816406 222.066406 441.375 218.136719 C 441.265625 216.789062 441.054688 215.488281 440.75 214.222656 C 440.117188 211.636719 439.074219 209.214844 437.628906 206.957031 C 437.007812 206.003906 436.320312 205.074219 435.550781 204.171875 L 419.5 190.789062 L 415.253906 196.777344 L 414.917969 197.441406 L 412.34375 198.519531 C 412.398438 198.910156 412.425781 199.351562 412.425781 199.851562 C 412.425781 201.066406 412.980469 202.617188 414.089844 204.507812 C 416.253906 206.164062 418.191406 208.019531 419.910156 210.070312 C 421.363281 211.785156 422.539062 213.472656 423.449219 215.140625 C 424.921875 217.78125 425.710938 220.363281 425.820312 222.867188 C 425.820312 223.066406 425.820312 223.261719 425.820312 223.449219 C 425.820312 225.835938 424.988281 231.484375 423.320312 240.402344 C 423.230469 240.898438 423.148438 241.382812 423.074219 241.859375 C 422.203125 246.492188 421.59375 249.925781 421.246094 252.164062 C 420.964844 253.777344 420.828125 254.761719 420.828125 255.113281 C 420.828125 255.523438 420.84375 256.15625 420.867188 257.023438 C 420.90625 259.015625 420.984375 262.203125 421.117188 266.578125 C 421.136719 266.859375 421.148438 267.132812 421.160156 267.410156 C 421.269531 271.234375 421.300781 274.640625 421.246094 277.636719 C 422.6875 281.511719 424.320312 285 426.15625 288.105469 Z M 404.605469 300.816406 C 405.328125 300.765625 406.023438 300.710938 406.6875 300.65625 C 409.957031 300.101562 413.007812 299.078125 415.835938 297.574219 L 415.835938 294.835938 L 411.34375 278.132812 C 411.34375 277.855469 411.289062 277.636719 411.175781 277.46875 L 411.175781 277.136719 C 411.066406 276.582031 410.984375 276.085938 410.929688 275.636719 C 410.714844 274.699219 410.523438 273.761719 410.347656 272.8125 C 409.789062 269.847656 409.417969 266.828125 409.222656 263.753906 C 409.164062 262.714844 409.121094 261.664062 409.101562 260.597656 C 409.0625 260.144531 409.039062 259.6875 409.011719 259.226562 C 408.941406 258.207031 408.886719 257.195312 408.847656 256.191406 C 408.796875 254.589844 408.570312 253.035156 408.1875 251.539062 C 408.09375 251.15625 408.011719 250.769531 407.933594 250.375 C 407.613281 248.589844 407.46875 246.761719 407.519531 244.890625 C 407.628906 242.675781 407.601562 240.402344 407.433594 238.078125 C 407.375 236.617188 407.222656 235.191406 406.976562 233.796875 C 406.519531 231.09375 405.730469 228.488281 404.605469 225.988281 C 404.164062 224.992188 403.667969 224.007812 403.109375 223.035156 L 403.027344 223.035156 L 398.035156 216.632812 L 393.039062 210.238281 C 392.878906 210.070312 392.65625 209.878906 392.375 209.652344 C 391.878906 209.101562 391.1875 208.269531 390.296875 207.164062 C 389.464844 207.941406 388.582031 208.519531 387.636719 208.910156 C 387.191406 209.125 386.75 209.351562 386.308594 209.574219 L 383.144531 209.574219 C 383.03125 209.742188 382.921875 209.90625 382.808594 210.070312 C 379.707031 214.222656 378.152344 217.273438 378.152344 219.210938 C 378.152344 220.433594 378.59375 222.089844 379.484375 224.203125 C 382.089844 225.417969 384.722656 226.523438 387.390625 227.523438 C 390.324219 228.523438 392.214844 229.597656 393.039062 230.765625 C 393.351562 231.171875 393.609375 231.652344 393.832031 232.214844 C 394.472656 233.859375 394.792969 236.167969 394.792969 239.160156 C 394.792969 239.722656 394.792969 240.285156 394.792969 240.863281 C 394.847656 246.414062 395.152344 252.007812 395.707031 257.648438 C 395.984375 260.535156 396.332031 263.429688 396.746094 266.332031 C 396.949219 267.757812 397.171875 269.183594 397.410156 270.613281 C 397.894531 273.507812 398.433594 276.414062 399.03125 279.335938 C 400.332031 285.480469 401.910156 291.671875 403.773438 297.910156 C 403.996094 298.796875 404.277344 299.765625 404.605469 300.816406 Z M 362.429688 190.457031 C 364.039062 191.179688 365.535156 192.0625 366.921875 193.117188 L 367.007812 193.03125 C 367.171875 192.925781 367.339844 192.816406 367.507812 192.703125 C 369.613281 191.316406 371.632812 190.292969 373.578125 189.628906 C 369.808594 188.964844 367.035156 188.824219 365.257812 189.214844 C 364.703125 189.429688 364.09375 189.628906 363.429688 189.796875 L 362.429688 190.457031 " />
- <path style="
- stroke: none;
- fill-rule: evenodd;
- fill: rgb(59.21936%, 10.198975%, 12.159729%);
- fill-opacity: 1;
- "
- d="M 427.070312 165.613281 L 392.796875 163.78125 L 379.566406 188.714844 C 380.066406 188.714844 380.511719 188.742188 380.902344 188.796875 C 380.511719 189.957031 379.707031 191.34375 378.488281 192.953125 C 378.097656 193.558594 377.625 194.199219 377.074219 194.863281 C 383.007812 196.414062 386.804688 197.464844 388.472656 198.023438 C 389.90625 198.519531 391.046875 199.019531 391.878906 199.519531 L 408.683594 200.433594 L 408.847656 200.097656 L 408.765625 200.097656 Z M 436.300781 158.21875 L 433.140625 162.699219 L 433.140625 162.789062 L 433.390625 162.621094 L 415.253906 196.777344 L 419.5 190.789062 L 421.40625 188.046875 C 422.296875 185.390625 422.992188 183.78125 423.488281 183.226562 C 423.542969 183.121094 423.570312 183.035156 423.570312 182.980469 C 423.605469 182.863281 423.632812 182.75 423.65625 182.644531 C 424.285156 180.398438 424.785156 178.925781 425.152344 178.242188 C 427.09375 174.144531 429.503906 171.597656 432.390625 170.597656 C 432.332031 170.984375 432.308594 171.375 432.308594 171.761719 L 449.277344 139.765625 L 436.300781 158.21875 " />
- <path style="
- stroke: none;
- fill-rule: evenodd;
- fill: rgb(85.879517%, 14.509583%, 16.079712%);
- fill-opacity: 1;
- "
- d="M 415.253906 196.777344 L 433.390625 162.621094 L 433.140625 162.789062 L 427.316406 165.277344 L 427.070312 165.613281 L 408.765625 200.097656 L 408.847656 200.097656 L 412.34375 198.519531 L 414.917969 197.441406 L 415.253906 196.777344 " />
- <path style="
- stroke: none;
- fill-rule: evenodd;
- fill: rgb(97.24884%, 61.959839%, 12.159729%);
- fill-opacity: 1;
- "
- d="M 418.914062 221.539062 C 418.359375 221.816406 418 222.152344 417.832031 222.539062 C 417.777344 222.648438 417.695312 222.8125 417.585938 223.035156 C 417.585938 223.089844 417.558594 223.171875 417.503906 223.285156 C 418.054688 222.785156 418.527344 222.203125 418.914062 221.539062 " />
- <g clip-path="url(#clip4)" clip-rule="nonzero">
- <path style="
- stroke: none;
- fill-rule: evenodd;
- fill: rgb(21.569824%, 14.898682%, 21.179199%);
- fill-opacity: 1;
- "
- d="M 456.933594 298.910156 C 455.324219 300.292969 453.351562 300.679688 451.023438 300.070312 C 450.246094 299.902344 449.5 299.792969 448.777344 299.738281 C 445.339844 299.183594 442.121094 298.050781 439.125 296.332031 C 437.464844 295.5 435.769531 294.78125 434.054688 294.171875 L 418.585938 290.851562 L 414.589844 289.769531 C 415.53125 290.265625 416.140625 291.011719 416.421875 292.011719 C 416.582031 293.0625 416.390625 294.003906 415.835938 294.835938 C 419.21875 296.277344 422.65625 297.078125 426.15625 297.246094 C 427.039062 297.191406 427.84375 296.886719 428.5625 296.332031 C 428.894531 296 429.3125 295.613281 429.808594 295.171875 C 433.75 296.390625 437.578125 297.910156 441.289062 299.738281 C 445.671875 302.007812 450.246094 302.757812 455.019531 301.984375 C 455.40625 302.09375 455.765625 302.007812 456.101562 301.734375 C 456.984375 301.015625 457.261719 300.070312 456.933594 298.910156 Z M 428.984375 316.859375 C 427.371094 317.855469 425.683594 318.492188 423.90625 318.773438 C 423.519531 318.824219 423.160156 318.878906 422.824219 318.933594 L 419.746094 319.019531 C 419.082031 318.964844 418.441406 318.910156 417.832031 318.855469 L 417.167969 318.773438 C 414.949219 318.605469 412.785156 317.886719 410.679688 316.613281 C 409.238281 315.667969 407.933594 314.558594 406.769531 313.285156 C 404.992188 311.234375 403.300781 309.019531 401.691406 306.636719 C 400.304688 304.640625 398.703125 302.816406 396.867188 301.152344 L 395.203125 300.65625 C 395.59375 304.976562 397.675781 308.132812 401.445312 310.125 C 401.890625 310.347656 402.363281 310.546875 402.859375 310.707031 C 404.910156 314.085938 407.464844 316.804688 410.511719 318.855469 C 411.457031 319.460938 412.425781 319.851562 413.425781 320.015625 C 418.417969 321.457031 423.296875 321.34375 428.0625 319.6875 C 428.175781 319.628906 428.34375 319.574219 428.5625 319.519531 L 428.984375 316.859375 " />
- </g>
- <g clip-path="url(#clip5)" clip-rule="nonzero">
- <path style="
- stroke: none;
- fill-rule: evenodd;
- fill: rgb(100%, 100%, 100%);
- fill-opacity: 1;
- "
- d="M 418.585938 290.851562 L 434.054688 294.171875 C 435.769531 294.78125 437.464844 295.5 439.125 296.332031 C 442.121094 298.050781 445.339844 299.183594 448.777344 299.738281 C 449.5 299.792969 450.246094 299.902344 451.023438 300.070312 C 453.351562 300.679688 455.324219 300.292969 456.933594 298.910156 C 457.429688 298.078125 457.59375 297.246094 457.429688 296.414062 C 457.375 295.582031 457.039062 294.78125 456.429688 294.003906 C 453.992188 291.515625 451.191406 289.515625 448.027344 288.023438 C 446.421875 287.410156 444.894531 286.664062 443.453125 285.777344 C 443.179688 285.609375 442.875 285.417969 442.539062 285.195312 L 439.460938 283.039062 C 437.578125 284.976562 435.246094 286.136719 432.476562 286.527344 C 430.308594 286.914062 428.207031 287.441406 426.15625 288.105469 C 424.097656 288.601562 422.046875 289.324219 419.996094 290.265625 C 419.5 290.429688 419.027344 290.625 418.585938 290.851562 Z M 396.867188 301.152344 C 398.703125 302.816406 400.304688 304.640625 401.691406 306.636719 C 403.300781 309.019531 404.992188 311.234375 406.769531 313.285156 C 407.933594 314.558594 409.238281 315.667969 410.679688 316.613281 C 412.785156 317.886719 414.949219 318.605469 417.167969 318.773438 L 417.832031 318.855469 C 418.441406 318.910156 419.082031 318.964844 419.746094 319.019531 L 422.824219 318.933594 C 423.160156 318.878906 423.519531 318.824219 423.90625 318.773438 C 425.683594 318.492188 427.371094 317.855469 428.984375 316.859375 C 429.089844 314.085938 428.175781 311.59375 426.234375 309.378906 C 424.292969 307.050781 422.296875 304.808594 420.246094 302.648438 L 415.835938 297.574219 C 413.007812 299.078125 409.957031 300.101562 406.6875 300.65625 C 406.023438 300.710938 405.328125 300.765625 404.605469 300.816406 C 402.113281 300.984375 399.617188 301.125 397.121094 301.238281 L 396.867188 301.152344 " />
- </g>
- <path style="
- stroke: none;
- fill-rule: evenodd;
- fill: rgb(73.728943%, 16.468811%, 45.489502%);
- fill-opacity: 1;
- "
- d="M 208.121094 173.503906 C 207.457031 176.273438 206.625 178.9375 205.628906 181.484375 C 206.179688 180.15625 206.710938 178.769531 207.207031 177.328125 C 207.59375 176.054688 207.898438 174.78125 208.121094 173.503906 Z M 164.863281 176.164062 L 168.273438 178.242188 C 169.828125 177.632812 171.4375 177.296875 173.097656 177.242188 C 173.542969 177.136719 174.097656 177.050781 174.761719 177 C 175.597656 177 176.207031 177 176.597656 177 C 178.03125 176.9375 179.113281 176.554688 179.839844 175.832031 C 180.058594 175.609375 180.308594 175.390625 180.585938 175.167969 L 180.921875 174.753906 C 181.09375 174.609375 181.273438 174.457031 181.460938 174.296875 C 181.632812 174.148438 181.816406 173.996094 182 173.839844 L 182.582031 173.175781 C 184.304688 171.398438 186.210938 169.214844 188.324219 166.613281 L 193.148438 160.707031 C 194.367188 159.101562 195.28125 157.992188 195.894531 157.386719 C 193.398438 158.21875 190.457031 158.632812 187.074219 158.632812 C 179.699219 158.632812 173.183594 156.496094 167.527344 152.230469 C 165.199219 150.457031 163.449219 148.796875 162.285156 147.246094 C 162.121094 147.6875 162.007812 148.132812 161.953125 148.574219 C 161.511719 149.902344 161.09375 151.957031 160.703125 154.726562 C 166.914062 156 170.019531 160.320312 170.019531 167.6875 C 170.019531 168.078125 168.828125 170.125 166.445312 173.839844 C 165.894531 174.726562 165.367188 175.503906 164.863281 176.164062 Z M 183.496094 184.144531 C 183.71875 184.644531 183.886719 185.140625 184 185.636719 C 184.167969 186.132812 184.273438 186.636719 184.328125 187.132812 C 184.328125 187.023438 184.328125 186.941406 184.328125 186.886719 C 184.832031 186.5 185.386719 186.109375 185.996094 185.722656 C 192.257812 181.347656 196.585938 176.664062 198.972656 171.679688 C 198.082031 172.289062 197.140625 172.925781 196.144531 173.589844 C 192.757812 175.800781 190.511719 177.296875 189.40625 178.074219 L 187.074219 179.90625 C 186.851562 180.015625 186.660156 180.15625 186.492188 180.320312 C 186.324219 180.433594 186.160156 180.539062 185.996094 180.652344 L 184.992188 181.570312 C 184.382812 182.230469 183.800781 182.867188 183.246094 183.476562 L 183.332031 183.644531 C 183.441406 183.8125 183.496094 183.980469 183.496094 184.144531 Z M 175.347656 100.789062 L 173.847656 101.621094 C 175.789062 103.726562 178.0625 105.199219 180.667969 106.027344 C 183.550781 106.800781 186.492188 107.054688 189.488281 106.773438 C 190.816406 106.664062 192.09375 106.382812 193.316406 105.941406 L 193.230469 106.027344 C 193.230469 106.078125 193.949219 105.917969 195.390625 105.527344 C 197.113281 104.972656 198.941406 103.421875 200.886719 100.875 C 201.71875 99.324219 202.351562 97.691406 202.796875 95.972656 C 202.960938 95.53125 203.105469 95.082031 203.210938 94.640625 L 199.46875 91.320312 C 199.691406 91.707031 199.886719 92.121094 200.054688 92.5625 C 200.828125 94.449219 200.605469 96.386719 199.386719 98.378906 C 198.722656 99.433594 197.890625 100.347656 196.890625 101.125 C 195.839844 101.898438 194.703125 102.453125 193.476562 102.789062 C 190.761719 103.503906 188.183594 103.894531 185.746094 103.949219 C 185.191406 103.949219 184.632812 103.917969 184.082031 103.863281 C 181.195312 103.699219 178.703125 102.949219 176.597656 101.621094 C 176.148438 101.398438 175.734375 101.125 175.347656 100.789062 Z M 182.832031 61.816406 C 183.222656 61.980469 183.550781 62.207031 183.832031 62.480469 L 184 62.480469 C 184.273438 62.703125 184.578125 62.949219 184.914062 63.230469 C 185.296875 63.671875 185.714844 64.113281 186.160156 64.558594 L 187.324219 66.222656 C 187.640625 66.628906 188.03125 66.902344 188.488281 67.050781 C 188.597656 67.105469 188.710938 67.136719 188.824219 67.136719 L 189.238281 67.136719 C 189.511719 67.136719 189.734375 67.078125 189.902344 66.96875 C 190.015625 66.96875 190.097656 66.96875 190.152344 66.96875 C 190.433594 66.6875 190.597656 66.304688 190.648438 65.804688 C 190.816406 64.144531 190.375 62.589844 189.320312 61.148438 L 189.238281 61.070312 L 189.238281 60.984375 L 189.152344 60.984375 C 188.378906 59.933594 187.4375 59.183594 186.324219 58.742188 C 186.210938 58.683594 186.105469 58.628906 185.996094 58.574219 L 185.867188 58.492188 C 185.71875 58.421875 185.539062 58.367188 185.328125 58.324219 C 184.609375 58.382812 183.914062 58.765625 183.246094 59.492188 C 182.863281 59.878906 182.332031 60.515625 181.667969 61.398438 C 181.890625 61.453125 182.109375 61.535156 182.332031 61.652344 C 182.558594 61.703125 182.71875 61.757812 182.832031 61.816406 " />
- <g clip-path="url(#clip6)" clip-rule="nonzero">
- <path style="
- stroke: none;
- fill-rule: evenodd;
- fill: rgb(42.349243%, 20.388794%, 12.159729%);
- fill-opacity: 1;
- "
- d="M 190.152344 66.96875 C 190.097656 66.96875 190.015625 66.96875 189.902344 66.96875 C 189.734375 67.078125 189.511719 67.136719 189.238281 67.136719 L 188.824219 67.136719 C 188.710938 67.136719 188.597656 67.105469 188.488281 67.050781 C 189.429688 69.097656 189.902344 70.875 189.902344 72.371094 C 189.902344 72.480469 189.125 75.859375 187.574219 82.507812 C 187.300781 83.398438 186.964844 84.199219 186.574219 84.917969 C 186.851562 84.972656 187.132812 85.03125 187.40625 85.085938 C 187.40625 85.472656 187.40625 85.886719 187.40625 86.332031 C 187.902344 86.332031 188.390625 86.261719 188.863281 86.125 C 189.714844 85.90625 190.535156 85.476562 191.320312 84.835938 C 191.410156 84.742188 191.507812 84.644531 191.609375 84.542969 C 192.375 83.707031 193.082031 82.671875 193.730469 81.429688 C 193.894531 81.039062 194.117188 80.566406 194.398438 80.015625 C 194.117188 79.574219 193.949219 79.074219 193.894531 78.515625 C 194.0625 76.195312 194.007812 74.476562 193.730469 73.363281 C 193.171875 71.539062 192.035156 69.464844 190.320312 67.136719 C 190.265625 67.023438 190.207031 66.96875 190.152344 66.96875 Z M 202.296875 80.765625 C 202.851562 80.707031 203.265625 80.707031 203.546875 80.765625 C 203.546875 79.824219 203.730469 78.691406 204.085938 77.355469 C 204.121094 77.195312 204.164062 77.027344 204.210938 76.859375 C 204.765625 75.140625 205.15625 73.835938 205.375 72.949219 C 205.710938 71.457031 205.820312 70.179688 205.710938 69.128906 C 205.542969 67.800781 205.015625 66.609375 204.128906 65.558594 C 204.019531 65.390625 203.714844 64.503906 203.210938 62.894531 C 202.882812 61.789062 202.433594 60.925781 201.882812 60.320312 C 200.382812 58.492188 198.21875 57.246094 195.390625 56.582031 C 193.621094 56.195312 191.121094 55.996094 187.910156 55.996094 C 187.300781 55.886719 186.742188 56.140625 186.242188 56.746094 C 185.964844 57.078125 185.609375 57.574219 185.160156 58.242188 L 185.410156 58.324219 C 185.578125 58.367188 185.730469 58.421875 185.867188 58.492188 L 185.996094 58.574219 C 186.324219 57.628906 187.132812 57.1875 188.40625 57.246094 C 190.070312 57.300781 191.953125 58.214844 194.0625 59.988281 C 199.429688 64.484375 202.171875 70.613281 202.296875 78.394531 C 202.296875 78.566406 202.296875 78.75 202.296875 78.933594 C 202.296875 78.988281 202.296875 79.597656 202.296875 80.765625 Z M 158.875 78.558594 C 158.886719 78.605469 158.917969 78.644531 158.957031 78.683594 C 163.339844 81.234375 167.273438 82.507812 170.773438 82.507812 C 173.042969 82.507812 176.066406 81.292969 179.839844 78.851562 C 180.949219 78.019531 181.917969 77.324219 182.75 76.773438 C 184.191406 74.449219 184.914062 72.148438 184.914062 69.878906 C 184.914062 69.488281 184.550781 68.273438 183.832031 66.222656 C 183.109375 64.167969 182.75 63.085938 182.75 62.976562 C 182.75 62.535156 182.773438 62.148438 182.832031 61.816406 C 182.71875 61.757812 182.558594 61.703125 182.332031 61.652344 C 182.109375 61.535156 181.890625 61.453125 181.667969 61.398438 C 178.449219 60.070312 175.066406 60.179688 171.519531 61.734375 C 168.355469 63.175781 165.667969 65.390625 163.449219 68.378906 C 161.898438 70.210938 160.785156 71.730469 160.125 72.949219 C 159.125 74.78125 158.707031 76.578125 158.875 78.351562 C 158.875 78.40625 158.875 78.460938 158.875 78.515625 L 158.875 78.558594 " />
- </g>
- <path style="
- stroke: none;
- fill-rule: evenodd;
- fill: rgb(24.308777%, 12.159729%, 9.01947%);
- fill-opacity: 1;
- "
- d="M 190.152344 66.96875 C 190.207031 66.96875 190.265625 67.023438 190.320312 67.136719 C 192.035156 69.464844 193.171875 71.539062 193.730469 73.363281 C 194.007812 74.476562 194.0625 76.195312 193.894531 78.515625 C 193.949219 79.074219 194.117188 79.574219 194.398438 80.015625 C 194.453125 79.902344 194.476562 79.820312 194.476562 79.765625 L 195.144531 78.105469 C 195.144531 78.050781 195.175781 77.996094 195.230469 77.9375 C 195.230469 77.828125 195.253906 77.714844 195.3125 77.605469 C 196.617188 78.257812 197.785156 79.1875 198.804688 80.390625 C 198.921875 80.511719 199.03125 80.632812 199.140625 80.765625 C 199.636719 80.984375 200.359375 81.011719 201.300781 80.84375 L 202.046875 80.765625 C 202.160156 80.765625 202.242188 80.765625 202.296875 80.765625 C 202.296875 79.597656 202.296875 78.988281 202.296875 78.933594 C 202.296875 78.75 202.296875 78.566406 202.296875 78.394531 C 202.171875 70.613281 199.429688 64.484375 194.0625 59.988281 C 191.953125 58.214844 190.070312 57.300781 188.40625 57.246094 C 187.132812 57.1875 186.324219 57.628906 185.996094 58.574219 C 186.050781 58.574219 186.105469 58.574219 186.160156 58.574219 L 186.324219 58.742188 C 187.4375 59.183594 188.378906 59.933594 189.152344 60.984375 L 189.238281 60.984375 L 189.238281 61.070312 L 189.320312 61.148438 C 190.375 62.589844 190.816406 64.144531 190.648438 65.804688 C 190.597656 66.304688 190.433594 66.6875 190.152344 66.96875 Z M 188.488281 67.050781 C 188.03125 66.902344 187.640625 66.628906 187.324219 66.222656 L 186.160156 64.558594 C 185.714844 64.113281 185.296875 63.671875 184.914062 63.230469 C 184.578125 62.949219 184.273438 62.703125 184 62.480469 L 183.832031 62.480469 C 183.550781 62.207031 183.222656 61.980469 182.832031 61.816406 C 182.773438 62.148438 182.75 62.535156 182.75 62.976562 C 182.75 63.085938 183.109375 64.167969 183.832031 66.222656 C 184.550781 68.273438 184.914062 69.488281 184.914062 69.878906 C 184.914062 72.148438 184.191406 74.449219 182.75 76.773438 C 181.917969 77.324219 180.949219 78.019531 179.839844 78.851562 C 176.066406 81.292969 173.042969 82.507812 170.773438 82.507812 C 167.273438 82.507812 163.339844 81.234375 158.957031 78.683594 C 158.984375 79.097656 159.039062 79.480469 159.125 79.851562 C 159.261719 80.347656 159.457031 80.820312 159.710938 81.261719 L 163.035156 84.421875 C 164.699219 85.304688 167.191406 86.054688 170.523438 86.664062 L 170.6875 86.910156 C 171.519531 88.078125 172.738281 88.90625 174.347656 89.40625 C 175.234375 89.738281 176.621094 90.015625 178.503906 90.238281 C 178.730469 90.289062 178.921875 90.320312 179.089844 90.320312 L 179.171875 90.320312 L 179.671875 90.152344 C 180.226562 89.875 180.753906 89.464844 181.253906 88.90625 C 181.75 88.296875 182.164062 87.800781 182.5 87.410156 L 182.917969 87 C 183.582031 86.167969 184.21875 85.609375 184.832031 85.335938 C 185.386719 85.054688 185.964844 84.917969 186.574219 84.917969 C 186.964844 84.199219 187.300781 83.398438 187.574219 82.507812 C 189.125 75.859375 189.902344 72.480469 189.902344 72.371094 C 189.902344 70.875 189.429688 69.097656 188.488281 67.050781 " />
- <path style="
- stroke: none;
- fill-rule: evenodd;
- fill: rgb(31.759644%, 32.159424%, 32.939148%);
- fill-opacity: 1;
- "
- d="M 128.429688 181.234375 L 148.894531 193.03125 C 149.007812 193.09375 149.085938 193.144531 149.144531 193.199219 C 150.136719 193.753906 150.890625 194.085938 151.386719 194.199219 C 152.386719 194.535156 152.582031 194.144531 151.972656 193.03125 L 138.578125 168.023438 L 138.496094 167.933594 C 138.328125 167.550781 138.078125 167.191406 137.746094 166.855469 C 137.191406 166.085938 136.441406 165.359375 135.5 164.695312 C 134.722656 164.035156 133.78125 163.371094 132.671875 162.699219 L 130.757812 161.707031 L 105.964844 147.328125 C 102.917969 145.613281 101.863281 145.636719 102.808594 147.414062 L 116.203125 172.425781 C 117.140625 174.144531 119.140625 175.886719 122.1875 177.660156 L 128.429688 181.234375 " />
- <path style="
- stroke: none;
- fill-rule: evenodd;
- fill: rgb(51.368713%, 11.369324%, 29.40979%);
- fill-opacity: 1;
- "
- d="M 164.863281 176.164062 C 165.367188 175.503906 165.894531 174.726562 166.445312 173.839844 C 168.828125 170.125 170.019531 168.078125 170.019531 167.6875 C 170.019531 160.320312 166.914062 156 160.703125 154.726562 C 158.988281 154.558594 156.851562 154.972656 154.300781 155.96875 C 153.636719 156.304688 152.605469 156.800781 151.21875 157.464844 C 150 157.96875 148.945312 158.296875 148.0625 158.464844 C 148.007812 158.738281 147.867188 159.347656 147.644531 160.292969 L 147.558594 160.457031 C 147.558594 160.515625 147.535156 160.597656 147.476562 160.707031 C 147.308594 161.261719 147.203125 161.707031 147.148438 162.035156 C 150.082031 163.53125 152.636719 166.246094 154.800781 170.183594 C 154.855469 170.292969 154.9375 170.429688 155.046875 170.597656 Z M 208.121094 173.503906 L 208.203125 173.421875 C 208.203125 173.257812 208.234375 173.121094 208.289062 173.007812 C 208.84375 169.734375 208.953125 166.523438 208.617188 163.371094 C 208.617188 163.257812 208.617188 163.171875 208.617188 163.117188 C 207.121094 165.117188 205.179688 167.023438 202.796875 168.851562 C 201.800781 169.734375 200.523438 170.679688 198.972656 171.679688 C 196.585938 176.664062 192.257812 181.347656 185.996094 185.722656 C 185.386719 186.109375 184.832031 186.5 184.328125 186.886719 C 184.328125 186.941406 184.328125 187.023438 184.328125 187.132812 C 184.382812 187.46875 184.414062 187.796875 184.414062 188.132812 C 184.523438 188.6875 184.550781 189.238281 184.496094 189.796875 C 184.550781 189.847656 184.550781 189.933594 184.496094 190.046875 C 184.496094 190.261719 184.496094 190.542969 184.496094 190.878906 L 184.496094 190.957031 C 184.328125 193.617188 183.496094 195.945312 182 197.9375 C 181.113281 198.601562 180.003906 199.265625 178.671875 199.929688 C 177.953125 200.320312 176.816406 200.875 175.261719 201.59375 C 176.316406 202.480469 177.398438 203.003906 178.503906 203.171875 C 179.890625 203.449219 181.085938 203.226562 182.085938 202.507812 C 185.410156 201.511719 188.683594 199.792969 191.898438 197.355469 C 194.398438 195.527344 197.195312 193.03125 200.300781 189.878906 C 200.636719 189.488281 200.992188 189.046875 201.382812 188.550781 C 201.382812 188.492188 201.414062 188.460938 201.464844 188.460938 C 201.464844 188.40625 201.496094 188.351562 201.550781 188.300781 C 201.601562 188.246094 201.664062 188.1875 201.71875 188.132812 C 201.769531 188.019531 201.855469 187.941406 201.96875 187.882812 C 201.96875 187.828125 201.992188 187.773438 202.046875 187.71875 C 202.046875 187.605469 202.074219 187.492188 202.128906 187.386719 C 203.519531 185.554688 204.683594 183.589844 205.628906 181.484375 C 206.625 178.9375 207.457031 176.273438 208.121094 173.503906 " />
- <path style="
- stroke: none;
- fill-rule: evenodd;
- fill: rgb(18.03894%, 17.649841%, 17.649841%);
- fill-opacity: 1;
- "
- d="M 198.058594 155.222656 C 198.332031 154.945312 198.609375 154.695312 198.886719 154.472656 L 198.972656 154.394531 C 199.082031 154.226562 199.21875 154.089844 199.386719 153.976562 C 199.386719 153.921875 199.414062 153.863281 199.46875 153.808594 C 199.582031 153.753906 199.691406 153.671875 199.804688 153.5625 C 201.132812 152.230469 202.046875 150.929688 202.546875 149.65625 C 201.824219 149.269531 201.132812 148.824219 200.46875 148.328125 C 200.023438 150.820312 198.332031 152.617188 195.390625 153.726562 C 193.339844 154.558594 190.761719 154.945312 187.660156 154.890625 C 182.71875 155.058594 178.285156 154.28125 174.347656 152.566406 C 169.578125 150.511719 166.472656 147.4375 165.03125 143.339844 C 163.867188 144.285156 162.953125 145.582031 162.285156 147.246094 C 163.449219 148.796875 165.199219 150.457031 167.527344 152.230469 C 173.183594 156.496094 179.699219 158.632812 187.074219 158.632812 C 190.457031 158.632812 193.398438 158.21875 195.894531 157.386719 C 196.058594 157.160156 196.167969 156.996094 196.226562 156.882812 C 196.503906 156.664062 196.722656 156.441406 196.890625 156.222656 Z M 151.386719 194.199219 C 153.164062 194.976562 154.496094 195.085938 155.378906 194.535156 L 162.953125 190.210938 C 163.339844 189.324219 163.867188 188.382812 164.53125 187.386719 C 165.863281 185.722656 166.808594 184.445312 167.359375 183.5625 C 166.582031 183.949219 165.582031 184.972656 164.363281 186.636719 C 163.308594 188.078125 162.257812 188.933594 161.203125 189.214844 C 160.984375 188.4375 161.066406 187.578125 161.449219 186.636719 C 161.511719 186.582031 161.921875 185.835938 162.699219 184.390625 L 160.953125 183.226562 C 162.617188 181.515625 164.445312 180.125 166.445312 179.074219 C 167.054688 178.746094 167.664062 178.464844 168.273438 178.242188 L 164.863281 176.164062 L 155.046875 170.597656 L 146.066406 165.445312 L 144.730469 164.613281 C 141.683594 162.84375 139.523438 162.347656 138.246094 163.117188 L 135.5 164.695312 C 136.441406 165.359375 137.191406 166.085938 137.746094 166.855469 C 138.078125 167.191406 138.328125 167.550781 138.496094 167.933594 L 138.578125 168.023438 L 151.972656 193.03125 C 152.582031 194.144531 152.386719 194.535156 151.386719 194.199219 Z M 167.945312 187.300781 L 170.109375 185.972656 C 170.214844 185.75 170.324219 185.527344 170.4375 185.308594 C 169.714844 185.582031 168.996094 186.109375 168.273438 186.886719 C 168.21875 186.941406 168.105469 187.078125 167.945312 187.300781 " />
- <path style="
- stroke: none;
- fill-rule: evenodd;
- fill: rgb(35.688782%, 30.979919%, 57.249451%);
- fill-opacity: 1;
- "
- d="M 144.316406 261.929688 C 144.316406 261.984375 144.316406 262.039062 144.316406 262.089844 C 144.816406 263.480469 145.097656 264.835938 145.148438 266.164062 C 145.148438 267.660156 144.84375 269.074219 144.234375 270.402344 C 143.511719 271.898438 142.460938 274.394531 141.070312 277.878906 C 139.738281 281.261719 138.6875 283.808594 137.914062 285.53125 C 137.359375 286.96875 136.46875 288.132812 135.25 289.019531 C 133.917969 289.960938 132.53125 290.238281 131.089844 289.851562 C 129.261719 289.074219 127.957031 288.355469 127.179688 287.691406 C 125.792969 286.585938 125.519531 285.363281 126.351562 284.03125 C 125.792969 284.808594 124.910156 285.695312 123.6875 286.691406 C 123.542969 286.792969 123.390625 286.914062 123.230469 287.066406 C 123.882812 286.40625 124.421875 285.695312 124.855469 284.945312 C 125.296875 283.730469 125.710938 281.871094 126.097656 279.382812 C 126.488281 276.832031 126.90625 274.949219 127.347656 273.726562 C 127.347656 274.445312 127.539062 275.085938 127.929688 275.636719 C 128.316406 276.140625 128.761719 276.527344 129.261719 276.800781 C 129.371094 276.46875 129.429688 276.109375 129.429688 275.71875 C 129.757812 273.726562 130.007812 272.234375 130.175781 271.234375 C 130.453125 269.515625 130.839844 268.074219 131.34375 266.914062 C 132.839844 263.144531 134.113281 258.769531 135.164062 253.78125 C 134.890625 253.507812 134.613281 253.285156 134.332031 253.117188 C 133.28125 252.453125 132.175781 252.039062 131.007812 251.875 C 131.230469 252.261719 131.648438 252.734375 132.257812 253.285156 C 132.699219 253.839844 132.867188 254.390625 132.753906 254.945312 C 132.585938 257.828125 131.648438 261.234375 129.925781 265.167969 C 129.429688 266.164062 128.652344 267.714844 127.59375 269.820312 C 126.710938 271.761719 126.015625 273.421875 125.519531 274.808594 C 124.855469 276.527344 124.40625 277.550781 124.183594 277.878906 C 123.628906 279.101562 122.851562 279.847656 121.859375 280.128906 C 120.304688 280.460938 118.804688 280.097656 117.363281 279.046875 C 115.867188 278.046875 114.921875 276.800781 114.535156 275.308594 C 114.761719 274.476562 115.34375 273.257812 116.285156 271.652344 C 116.394531 271.539062 116.476562 271.429688 116.53125 271.316406 C 117.589844 269.710938 118.167969 268.410156 118.277344 267.410156 C 117.667969 268.355469 116.699219 269.796875 115.371094 271.734375 C 114.3125 273.398438 113.261719 274.75 112.207031 275.804688 C 110.597656 277.582031 109.410156 279.574219 108.632812 281.792969 C 107.910156 284.171875 107.769531 286.472656 108.214844 288.6875 C 108.878906 289.960938 110.019531 290.765625 111.628906 291.097656 C 112.957031 291.316406 114.367188 291.210938 115.867188 290.765625 C 118.03125 290.097656 119.71875 289.40625 120.945312 288.6875 C 121.476562 288.445312 121.949219 288.140625 122.355469 287.769531 C 121.894531 288.210938 121.371094 288.660156 120.777344 289.105469 C 118.558594 291.15625 117.5 293.308594 117.613281 295.582031 C 117.5 296.75 117.972656 297.6875 119.03125 298.414062 C 119.859375 299.019531 120.914062 299.40625 122.1875 299.574219 C 124.855469 299.960938 127.378906 299.960938 129.757812 299.574219 C 132.425781 299.183594 134.804688 298.414062 136.914062 297.246094 C 138.296875 296.300781 139.328125 294.835938 139.988281 292.84375 C 140.269531 292.179688 140.683594 290.429688 141.238281 287.609375 L 141.238281 290.097656 C 142.183594 290.707031 143.070312 291.042969 143.902344 291.097656 C 144.953125 291.15625 145.84375 290.820312 146.5625 290.097656 C 146.398438 287.050781 146.621094 284.003906 147.230469 280.960938 C 147.726562 277.910156 148.617188 274.972656 149.890625 272.148438 C 150.5 270.265625 150.136719 268.328125 148.808594 266.332031 C 147.8125 264.835938 146.316406 263.367188 144.316406 261.929688 " />
- </g>
- </svg>
- </div>
- </div>
- </div>
-</section> \ No newline at end of file
diff --git a/layouts/partials/sections/v3/experience.html b/layouts/partials/sections/v3/experience.html
deleted file mode 100644
index 793c82d..0000000
--- a/layouts/partials/sections/v3/experience.html
+++ /dev/null
@@ -1,138 +0,0 @@
-<section id="experience">
- <div class="container-fluid pt-5">
- <div class="text-dark text-center h3">Experience</div>
-
- <div class="row justify-content-center py-md-5">
- <div class="d-md-none d-lg-none d-sm-block">
- <ol class="ex-ol pl-5 pr-3">
- {{ range .Site.Params.experience }}
- <li class="ex-ol-li" data-aos="fade-up" data-aos-easing="linear" data-aos-duration="600" data-aos-once="true">
- <h4 class="text-muted">
- <span class="text-primary">{{ .company }}</span> - {{ .role }}
- </h4>
- <div>
- <small>{{ .startdate}}</small>
- -
- <small>{{ .enddate }}</small>
- </div>
- <ul class="py-2 ex-ol-ul">
- {{ range .featuredpoints }}
- <li class="ex-ol-item">{{ .point }}</li>
- {{ end }}
- </ul>
- </li>
- {{ end }}
- </ol>
- </div>
-
- <div id="nav-pills-out" class="d-none d-md-block nav flex-column nav-pills col-md-2" id="v-pills-tab"
- role="tablist" aria-orientation="vertical">
- {{ range $index, $element := .Site.Params.experience }}
- {{ if (eq $index 0) }}
- {{ if .id }}
- <a class="nav-link active" id="{{ .id }}-tab" data-toggle="pill" href="#{{ .id }}" role="tab"
- aria-controls="{{ .id }}" aria-selected="true">
- {{ .company }}
- </a>
- {{ else }}
- <a class="nav-link active" id="{{ .company }}-tab" data-toggle="pill" href="#{{ .company }}" role="tab"
- aria-controls="{{ .company }}" aria-selected="true">
- {{ .company }}
- </a>
- {{ end }}
-
-
- {{ else }}
- {{ if .id }}
- <a class="nav-link" id="{{ .id }}-tab" data-toggle="pill" href="#{{ .id }}" role="tab" aria-controls="{{ .id }}"
- aria-selected="false">
- {{ .company }}
- </a>
- {{ else }}
- <a class="nav-link" id="{{ .company }}-tab" data-toggle="pill" href="#{{ .company }}" role="tab"
- aria-controls="{{ .company }}" aria-selected="false">
- {{ .company }}
- </a>
- {{ end }}
-
- {{ end }} {{ end }}
- </div>
-
- <div class="tab-content col-md-4 d-none d-md-block" id="v-pills-tabContent">
- {{ range $index, $element := .Site.Params.experience }}
- {{ if (eq $index 0) }}
- {{ if .id }}
- <div class="tab-pane fade show active" id="{{ .id }}" role="tabpanel" aria-labelledby="{{ .id }}-tab">
- <div class="h4 text-muted">
- <span class="text-primary">{{ .company }}</span> - {{ .role }}
- </div>
- <div>
- <small>{{ .startdate }}</small>
- -
- <small>{{ .enddate }}</small>
- </div>
- <ul class="py-2 ex">
- {{ range .featuredpoints }}
- <li class="ex-item">{{ .point }}</li>
- {{ end }}
- </ul>
- </div>
- {{ else }}
- <div class="tab-pane fade show active" id="{{ .company }}" role="tabpanel" aria-labelledby="{{ .company }}-tab">
- <div class="h4 text-muted">
- <span class="text-primary">{{ .company }}</span> - {{ .role }}
- </div>
- <div>
- <small>{{ .startdate }}</small>
- -
- <small>{{ .enddate }}</small>
- </div>
- <ul class="py-2 ex">
- {{ range .featuredpoints }}
- <li class="ex-item">{{ .point }}</li>
- {{ end }}
- </ul>
- </div>
- {{ end }}
-
- {{ else }}
- {{ if .id }}
- <div class="tab-pane fade" id="{{ .id }}" role="tabpanel" aria-labelledby="{{ .id }}-tab">
- <div class="h4 text-muted">
- <span class="text-primary">{{ .company }}</span> - {{ .role }}
- </div>
- <div>
- <small>{{ .startdate }}</small>
- -
- <small>{{ .enddate }}</small>
- </div>
- <ul class="py-2 ex">
- {{ range .featuredpoints }}
- <li class="ex-item">{{ .point }}</li>
- {{ end }}
- </ul>
- </div>
- {{ else }}
- <div class="tab-pane fade" id="{{ .company }}" role="tabpanel" aria-labelledby="{{ .company }}-tab">
- <div class="h4 text-muted">
- <span class="text-primary">{{ .company }}</span> - {{ .role }}
- </div>
- <div>
- <small>{{ .startdate }}</small>
- -
- <small>{{ .enddate }}</small>
- </div>
- <ul class="py-2 ex">
- {{ range .featuredpoints }}
- <li class="ex-item">{{ .point }}</li>
- {{ end }}
- </ul>
- </div>
- {{ end }}
-
- {{ end }}
- {{ end }}
- </div>
- </div>
- </div>
-</section> \ No newline at end of file
diff --git a/layouts/partials/sections/v3/footer.html b/layouts/partials/sections/v3/footer.html
deleted file mode 100644
index d29e95f..0000000
--- a/layouts/partials/sections/v3/footer.html
+++ /dev/null
@@ -1,142 +0,0 @@
-<footer>
- <!-- recent posts -->
- <div class="news container py-3" data-aos="fade-up" data-aos-easing="linear" data-aos-once="true">
- {{ if .Site.Params.recentposts }}
- <div class="h3 text-center text-dark py-3 font-weight-bold">Recent posts</div>
- <div class="row justify-content-center">
- {{ range ( where .Site.RegularPages "Type" "blog" | first 3 ) }}
- <div class="col-lg-4 col-md-6 pt-2">
- <a href="{{ .RelPermalink }}" class="post-card-link">
- <div class="card h-100">
- <div class="card-head px-2 py-3">
- <h5 class="card-title font-weight-bold px-2">{{ .Title }}</h5>
- <div class="px-2">{{ .Summary | truncate 300}}</div>
- </div>
- <div class="mt-auto card-footer">
- <span class="float-left">{{ .Date.Format "January 2, 2006" }}</span>
- <a href="{{ .RelPermalink }}" class="float-right btn btn-outline-info btn-sm">Read</a>
- </div>
- </div>
- </a>
- </div>
- {{ end }}
- </div>
- {{ end }}
- </div>
- {{ if .Site.Params.socialiconfooter }}
-
- <div class="text-center">
- {{ if .Site.Params.github }}
- <span class="px-1">
- <a class="text-dark text-decoration-none" href="{{ .Site.Params.github }}" aria-label="github">
- <svg xmlns="http://www.w3.org/2000/svg" width="2.7em" height="2.7em" viewBox="0 0 1792 1792">
- <path
- d="M522 1352q-8 9-20-3-13-11-4-19 8-9 20 3 12 11 4 19zm-42-61q9 12 0 19-8 6-17-7t0-18q9-7 17 6zm-61-60q-5 7-13 2-10-5-7-12 3-5 13-2 10 5 7 12zm31 34q-6 7-16-3-9-11-2-16 6-6 16 3 9 11 2 16zm129 112q-4 12-19 6-17-4-13-15t19-7q16 5 13 16zm63 5q0 11-16 11-17 2-17-11 0-11 16-11 17-2 17 11zm58-10q2 10-14 14t-18-8 14-15q16-2 18 9zm964-956v960q0 119-84.5 203.5t-203.5 84.5h-224q-16 0-24.5-1t-19.5-5-16-14.5-5-27.5v-239q0-97-52-142 57-6 102.5-18t94-39 81-66.5 53-105 20.5-150.5q0-121-79-206 37-91-8-204-28-9-81 11t-92 44l-38 24q-93-26-192-26t-192 26q-16-11-42.5-27t-83.5-38.5-86-13.5q-44 113-7 204-79 85-79 206 0 85 20.5 150t52.5 105 80.5 67 94 39 102.5 18q-40 36-49 103-21 10-45 15t-57 5-65.5-21.5-55.5-62.5q-19-32-48.5-52t-49.5-24l-20-3q-21 0-29 4.5t-5 11.5 9 14 13 12l7 5q22 10 43.5 38t31.5 51l10 23q13 38 44 61.5t67 30 69.5 7 55.5-3.5l23-4q0 38 .5 103t.5 68q0 22-11 33.5t-22 13-33 1.5h-224q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z" />
-
- <metadata>
- <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:dc="http://purl.org/dc/elements/1.1/">
- <rdf:Description about="https://iconscout.com/legal#licenses"
- dc:title="Github, Online, Project, Hosting, Square"
- dc:description="Github, Online, Project, Hosting, Square" dc:publisher="Iconscout" dc:date="2016-12-14"
- dc:format="image/svg+xml" dc:language="en">
- <dc:creator>
- <rdf:Bag>
- <rdf:li>Font Awesome</rdf:li>
- </rdf:Bag>
- </dc:creator>
- </rdf:Description>
- </rdf:RDF>
- </metadata>
- </svg>
- </a>
- </span>
- {{ end }}
-
- {{ if .Site.Params.linkedin }}
- <span class="px-1">
- <a class="text-white text-decoration-none" href="{{ .Site.Params.linkedin }}" aria-label="linkedin">
- <svg xmlns="http://www.w3.org/2000/svg" width='2.4em' height='2.4em' fill="#fff" aria-label="LinkedIn"
- viewBox="0 0 512 512">
- <rect width="512" height="512" fill="#0077b5" rx="15%" />
- <circle cx="142" cy="138" r="37" />
- <path stroke="#fff" stroke-width="66" d="M244 194v198M142 194v198" />
- <path d="M276 282c0-20 13-40 36-40 24 0 33 18 33 45v105h66V279c0-61-32-89-76-89-34 0-51 19-59 32" />
- </svg>
- </a>
- </span>
- {{ end }}
-
- {{ if .Site.Params.twitter }}
- <a class="text-info text-decoration-none" href="{{ .Site.Params.twitter }}" aria-label="twitter">
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="48px" height="48px">
- <path fill="#03a9f4"
- d="M42,37c0,2.762-2.239,5-5,5H11c-2.762,0-5-2.238-5-5V11c0-2.762,2.238-5,5-5h26c2.761,0,5,2.238,5,5 V37z" />
- <path fill="#fff"
- d="M36,17.12c-0.882,0.391-1.999,0.758-3,0.88c1.018-0.604,2.633-1.862,3-3 c-0.951,0.559-2.671,1.156-3.793,1.372C31.311,15.422,30.033,15,28.617,15C25.897,15,24,17.305,24,20v2c-4,0-7.9-3.047-10.327-6 c-0.427,0.721-0.667,1.565-0.667,2.457c0,1.819,1.671,3.665,2.994,4.543c-0.807-0.025-2.335-0.641-3-1c0,0.016,0,0.036,0,0.057 c0,2.367,1.661,3.974,3.912,4.422C16.501,26.592,16,27,14.072,27c0.626,1.935,3.773,2.958,5.928,3c-1.686,1.307-4.692,2-7,2 c-0.399,0-0.615,0.022-1-0.023C14.178,33.357,17.22,34,20,34c9.057,0,14-6.918,14-13.37c0-0.212-0.007-0.922-0.018-1.13 C34.95,18.818,35.342,18.104,36,17.12" />
- </svg>
- </a>
- {{ end }}
-
- {{ if .Site.Params.instagram }}
- <a class="text-danger text-decoration-none" href="{{ .Site.Params.instagram }}" aria-label="instagram">
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="48px" height="48px">
- <radialGradient id="yOrnnhliCrdS2gy~4tD8ma" cx="19.38" cy="42.035" r="44.899" gradientUnits="userSpaceOnUse">
- <stop offset="0" stop-color="#fd5" />
- <stop offset=".328" stop-color="#ff543f" />
- <stop offset=".348" stop-color="#fc5245" />
- <stop offset=".504" stop-color="#e64771" />
- <stop offset=".643" stop-color="#d53e91" />
- <stop offset=".761" stop-color="#cc39a4" />
- <stop offset=".841" stop-color="#c837ab" />
- </radialGradient>
- <path fill="url(#yOrnnhliCrdS2gy~4tD8ma)"
- d="M34.017,41.99l-20,0.019c-4.4,0.004-8.003-3.592-8.008-7.992l-0.019-20 c-0.004-4.4,3.592-8.003,7.992-8.008l20-0.019c4.4-0.004,8.003,3.592,8.008,7.992l0.019,20 C42.014,38.383,38.417,41.986,34.017,41.99z" />
- <radialGradient id="yOrnnhliCrdS2gy~4tD8mb" cx="11.786" cy="5.54" r="29.813"
- gradientTransform="matrix(1 0 0 .6663 0 1.849)" gradientUnits="userSpaceOnUse">
- <stop offset="0" stop-color="#4168c9" />
- <stop offset=".999" stop-color="#4168c9" stop-opacity="0" />
- </radialGradient>
- <path fill="url(#yOrnnhliCrdS2gy~4tD8mb)"
- d="M34.017,41.99l-20,0.019c-4.4,0.004-8.003-3.592-8.008-7.992l-0.019-20 c-0.004-4.4,3.592-8.003,7.992-8.008l20-0.019c4.4-0.004,8.003,3.592,8.008,7.992l0.019,20 C42.014,38.383,38.417,41.986,34.017,41.99z" />
- <path fill="#fff"
- d="M24,31c-3.859,0-7-3.14-7-7s3.141-7,7-7s7,3.14,7,7S27.859,31,24,31z M24,19c-2.757,0-5,2.243-5,5 s2.243,5,5,5s5-2.243,5-5S26.757,19,24,19z" />
- <circle cx="31.5" cy="16.5" r="1.5" fill="#fff" />
- <path fill="#fff"
- d="M30,37H18c-3.859,0-7-3.14-7-7V18c0-3.86,3.141-7,7-7h12c3.859,0,7,3.14,7,7v12 C37,33.86,33.859,37,30,37z M18,13c-2.757,0-5,2.243-5,5v12c0,2.757,2.243,5,5,5h12c2.757,0,5-2.243,5-5V18c0-2.757-2.243-5-5-5H18z" />
- </svg>
- </a>
- {{ end }}
-
- {{ if .Site.Params.facebook }}
- <a class="text-info text-decoration-none" href="{{ .Site.Params.facebook }}" aria-label="facebook">
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="48px" height="48px">
- <path fill="#3F51B5"
- d="M42,37c0,2.762-2.238,5-5,5H11c-2.761,0-5-2.238-5-5V11c0-2.762,2.239-5,5-5h26c2.762,0,5,2.238,5,5V37z" />
- <path fill="#FFF"
- d="M34.368,25H31v13h-5V25h-3v-4h3v-2.41c0.002-3.508,1.459-5.59,5.592-5.59H35v4h-2.287C31.104,17,31,17.6,31,18.723V21h4L34.368,25z" />
- </svg>
- </a>
- {{ end }}
- </div>
- {{ end }}
- <div class="container bg-transparent py-4">
- <div class="row justify-content-center">
- <div class="col-md-4 text-center order-2 order-lg-1 order-md-1">
- <div class="pb-2">
- <a href="{{ .Site.BaseURL }}">
- <img alt="Footer logo" src="{{ .Site.Params.favicon | default " /images/favicon.png"}}" height="40px"
- width="40px">
- </a>
- </div>
- &copy; {{ dateFormat "2006" now }} All Rights Reserved
- <div>
- Made with &#10084; and
- <a href="https://github.com/gurusabarish/hugo-profile" target="_blank">Hugo profile</a>
- | Designed and Developed by
- <a href="https://www.linkedin.com/in/gurusabarish/" target="_blank">Gurusabarish</a>
- </div>
- </div>
- </div>
- </div>
-</footer> \ No newline at end of file
diff --git a/layouts/partials/sections/v3/head.html b/layouts/partials/sections/v3/head.html
deleted file mode 100644
index c939704..0000000
--- a/layouts/partials/sections/v3/head.html
+++ /dev/null
@@ -1,36 +0,0 @@
-<meta charset="UTF-8">
-<meta name="viewport" content="width=device-width, initial-scale=1.0">
-<meta http-equiv="X-UA-Compatible" content="ie=edge">
-<link rel="icon" href="{{ .Site.Params.favicon | default " /images/favicon.png"}}" type="image/gif">
-<!-- Google analytics -->
-{{ template "_internal/google_analytics.html" . }}
-<!-- stylesheets -->
-<link rel="stylesheet" href="/css/bootstrap.min.css" media="all">
-<link rel="stylesheet" href="/css/all.min.css" media="all">
-<link rel="stylesheet" href="/css/fontawesome.min.css" media="all">
-<link rel="stylesheet" href="/css/v3/darkmode.css" media="all">
-
-<style>
- html {
- scrollbar-width: thin;
- scrollbar-color: #6c757d transparent;
- }
-
- ::-webkit-scrollbar {
- width: 5px;
- }
-
- ::-webkit-scrollbar-track {
- background: transparent;
- }
-
- ::-webkit-scrollbar-thumb {
- background: #6c757d;
- }
-</style>
-
-
-<!-- Custom Styles -->
-{{ if .Site.Params.customCSS }}
-<link rel="stylesheet" href="/style.css">
-{{ end }} \ No newline at end of file
diff --git a/layouts/partials/sections/v3/home.html b/layouts/partials/sections/v3/home.html
deleted file mode 100644
index 6340742..0000000
--- a/layouts/partials/sections/v3/home.html
+++ /dev/null
@@ -1,99 +0,0 @@
-<div class="container-fluid home">
- <div class="pt-5 pb-3 pt-md-0">
- <div class="row justify-content-center intro" data-aos="fade-down" data-aos-easing="linear"
- data-aos-duration="1000">
- <div class="col-md-7 pb-2 name-container">
- <div class="name" data-aos="fade-up" data-aos-offset="200" data-aos-delay="50" data-aos-duration="1000"
- data-aos-once="true">
- <div style="color: #{{ .Site.Params.namecolor }};" class="hi-text" data-aos="fade-up" data-aos-offset="50"
- data-aos-delay="50" data-aos-once="true" data-aos-duration="900">
- {{ .Site.Params.hitext | default "Hi there, I'm" }}
- </div>
- <h1 class="text-primary name-text" data-aos="fade-up" data-aos-offset="200" data-aos-delay="50"
- data-aos-duration="900" data-aos-once="true">
- {{ .Site.Params.name }}
- </h1>
- <h5 class="text-muted pro-text" data-aos="fade-up" data-aos-offset="200" data-aos-delay="50"
- data-aos-duration="900" data-aos-once="true">
- {{ .Site.Params.profession }}
- </h5>
- </div>
- <div class="row social pt-4" data-aos="fade-up" data-aos-offset="50" data-aos-delay="50" data-aos-duration="900"
- data-aos-once="true">
- <div class="col-md-12">
- {{ if .Site.Params.github }}
- <a href="{{ .Site.Params.github }}" class="social-icon">
- <i class="fab fa-lg fa-github"></i>
- &#8203;
- </a>
- <span class="px-1"></span>
- {{ end }}
-
- {{ if .Site.Params.gitlab }}
- <a href="{{ .Site.Params.gitlab }}" class="social-icon">
- <i class="fab fa-lg fa-gitlab"></i>
- &#8203;
- </a>
- <span class="px-1"></span>
- {{ end }}
-
- {{ if .Site.Params.twitter }}
- <a href="{{ .Site.Params.twitter }}" class="social-icon">
- <i class="fab fa-lg fa-twitter"></i>
- &#8203;
- </a>
- <span class="px-1"></span>
- {{ end }}
-
- {{ if .Site.Params.linkedin }}
- <a href="{{ .Site.Params.linkedin }}" class="social-icon">
- <i class="fab fa-lg fa-linkedin"></i>
- &#8203;
- </a>
- <span class="px-1"></span>
- {{ end }}
-
- {{ if .Site.Params.facebook }}
- <a href="{{ .Site.Params.facebook }}" class="social-icon">
- <i class="fab fa-lg fa-facebook"></i>
- &#8203;
- </a>
- <span class="px-1"></span>
- {{ end }}
-
- <!-- customSocialLinks -->
- {{ range .Site.Params.customSocialLinks }}
- {{ if .fontAwesomeIconName }}
- <a href="{{ .url }}" class="social-icon">
- <i class="fa-lg {{ .fontAwesomeIconName }}"></i>
- &#8203;
- </a>
- {{ else }}
- <a href="{{ .url }}" class="social-icon">
- <img class="fab fa-lg" src="{{ .imageURL }}" alt="{{ .name }}" width="4%" />
- &#8203;
- </a>
- {{ end }}
- <span class="px-1"></span>
- {{ end }}
- </div>
- </div>
-
- <div class="pt-4 btn-intro">
- <a href="#about" class="btn-know btn btn-outline-info" data-aos="zoom-in" data-aos-offset="50"
- data-aos-delay="50" data-aos-duration="900" data-aos-once="true">
- About me
- </a>
- </div>
-
- </div>
- <div class="col-md-5 text-center pt-2 pt-md-0 position-relative">
- {{ if .Site.Params.profile_image }}
- <img class="profile rounded shadow-lg" data-aos="zoom-in" data-aos-once="true" data-aos-duration="1000"
- src="{{ .Site.Params.profile_image }}" alt="{{ .Site.Params.name }}" class="rounded">
- {{ end }}
- </div>
-
- </div>
- </div>
-</div> \ No newline at end of file
diff --git a/layouts/partials/sections/v3/navbar.html b/layouts/partials/sections/v3/navbar.html
deleted file mode 100644
index 1a5a79c..0000000
--- a/layouts/partials/sections/v3/navbar.html
+++ /dev/null
@@ -1,120 +0,0 @@
-<div class="container">
- <nav class="pt-3 navbar navbar-expand-lg navbar-light" data-aos="fade-down" data-aos-easing="linear"
- data-aos-duration="500">
- <a class="navbar-brand" href="{{ .Site.BaseURL | relURL }}">
- {{ if .Site.Params.favicon }}
- <img src="{{ .Site.Params.favicon }}" width="30" height="30" class="d-inline-block align-top">
- {{ .Site.Title }}
- {{ else }}
- {{ .Site.Title }}
- {{ end }}
- </a>
-
-
- <button class="navbar-toggler border-0" type="button" data-toggle="collapse" data-target="#navbarNavDropdown"
- aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation">
- <span class="navbar-toggler-icon"></span>
- </button>
-
- <div class="collapse navbar-collapse" id="navbarNavDropdown">
- <ul class="navbar-nav ml-auto text-center">
-
- {{ if .Site.Params.disable_about }}
- {{ else }}
- <li class="nav-item navbar-text">
- <a class="nav-link text-dark" href="{{ .Site.BaseURL | relURL }}#about" aria-label="about">About</a>
- </li>
- {{ end }}
-
- {{ if .Site.Params.disable_experience }}
- {{ else }}
- <li class="nav-item navbar-text">
- <a class="nav-link text-dark" href="{{ .Site.BaseURL | relURL }}#experience"
- aria-label="experience">Experience</a>
- </li>
- {{ end }}
-
- {{ if .Site.Params.disable_education }}
- {{ else }}
- <li class="nav-item navbar-text">
- <a class="nav-link text-dark" href="{{ .Site.BaseURL | relURL }}#education"
- aria-label="education">Education</a>
- </li>
- {{ end }}
-
- {{ if .Site.Params.disable_projects }}
- {{ else }}
- <li class="nav-item navbar-text">
- <a class="nav-link text-dark" href="{{ .Site.BaseURL | relURL }}#projects" aria-label="projects">Projects</a>
- </li>
- {{ end }}
-
- {{ if .Site.Params.disable_achievements }}
- {{ else }}
- <li class="nav-item navbar-text">
- <a class="nav-link text-dark" href="{{ .Site.BaseURL | relURL }}#achievements"
- aria-label="achievements">Achievements</a>
- </li>
- {{ end }}
-
- {{ if .Site.Params.disable_contact }}
- {{ else }}
- <li class="nav-item navbar-text">
- <a class="nav-link text-dark" href="{{ .Site.BaseURL | relURL }}#contact" aria-label="contact">Contact</a>
- </li>
- {{ end }}
-
- {{ range .Site.Menus.main }}
- {{ if .HasChildren }}
- <!-- Dropdown menu -->
- <li class="nav-item dropdown navbar-text">
- <a class="nav-link text-dark dropdown-toggle" href="#" title="{{ .Title }}" id="navbarDropdownMenuLink"
- data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
- {{ .Name }}
- </a>
- <div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
- {{ range .Children }}
- <a class="dropdown-item text-dark" href="{{ .URL }}" title="{{ .Title }}">
- {{ .Name }}
- </a>
- {{ end }}
- </div>
- </li>
-
- {{/*
- <li class="nav-item dropdown">
- <a class="nav-link dropdown-toggle" href="{{ .URL }}" id="navbarDropdown" role="button"
- data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false" title="{{ .Title }}">
- {{ .Name }}
- </a>
- <div class="dropdown-menu" aria-labelledby="navbarDropdown">
- {{ range .Children }}
- <a class="dropdown-item" href="{{ .URL }}" title="{{ .Title }}">
- {{ .Name }}</a>
- {{ end }}
- </div>
- </li> */}}
- {{else}}
- <!-- Single menu item -->
- <li class="nav-item navbar-text">
- <a class="nav-link text-dark" href="{{.URL}}" title="{{ .Title }}">
- {{ .Pre }}
- <span>{{ .Name }}</span>
- </a>
- </li>
- {{end}}
- {{end}}
-
- <li class="nav-item navbar-text">
- <div class="custom-control custom-switch">
- <input type="checkbox" class="custom-control-input" id="customSwitch1" autocomplete="on">
- <label class="pt-2 darkmode-label" for="customSwitch1" style="cursor: pointer;">
- <i class="fas fa-lg fa-moon"></i>
- <i class="fas fa-lg fa-sun d-none text-warning"></i>
- </label>
- </div>
- </li>
- </ul>
- </div>
- </nav>
-</div> \ No newline at end of file
diff --git a/layouts/partials/sections/v3/projects.html b/layouts/partials/sections/v3/projects.html
deleted file mode 100644
index 418e5eb..0000000
--- a/layouts/partials/sections/v3/projects.html
+++ /dev/null
@@ -1,106 +0,0 @@
-<section id="projects">
- <div class="container-fluid py-5">
- <div class="text-dark text-center h3">Projects</div>
- <div class="row justify-content-center pt-2">
- {{ range ( where .Site.RegularPages "Type" "project" ) }}
- <div class="col-md-8 pro m-3 shadow" data-aos="fade-up" data-aos-duration="1500" data-aos-once="true">
- <div class="row">
- <div class="col-md-6 bg-pro">
- <img src="{{ .Params.img }}" alt="{{ .Title }}" />
- </div>
- <div class="col-md-6 content-pro p-3 bg-light">
- <div class="content-pro-top">
- <h2>{{ .Title }}</h2>
- <p class="card-text pt-2">{{ .Params.description }}</p>
- </div>
- <span class="float-right">
- {{ if .Params.featured }}
- <a href="{{ .Params.featured }}" class="px-1">
- <i class="fas text-info fa-link"></i>
- </a>
- {{ end }} {{ if .Params.github }}
- <a href="{{ .Params.github }}" class="px-1 pr-2">
- <i class="fab text-dark fa-lg fa-github pro-github"></i>
- </a>
- {{ end }}
- <a class="btn btn-sm pro-btn btn-outline-info" target="_blank" href="{{ .Permalink }}">
- Know more...
- </a>
- </span>
- </div>
- </div>
- </div>
- {{ end }} {{ range .Site.Params.projects }}
- <div class="col-md-8 pro m-3 shadow" data-aos="fade-up" data-aos-duration="1500" data-aos-once="true">
- <div class="row">
- <div class="col-md-6 bg-pro">
- <img src="{{ .img }}" alt="{{ .name }}" />
- </div>
- <div class="col-md-6 content-pro p-3 bg-light">
- <div class="content-pro-top">
- <h2>{{ .name }}</h2>
- <p class="card-text pt-2">{{ .description }}</p>
- </div>
- <span class="float-right">
- {{ if .featuredlink }}
- <a href="{{ .featuredlink }}" class="px-1">
- <i class="fas text-info fa-link"></i>
- </a>
- {{ end }} {{ if .githublink }}
- <a href="{{ .githublink }}" class="px-1 pr-2">
- <i class="fab text-dark fa-lg fa-github pro-github"></i>
- </a>
- {{ end }}
- </span>
- </div>
- </div>
- </div>
- {{ end }}
- </div>
- </div>
-</section>
-
-<!--
- {{ range ( where .Site.RegularPages "Type" "project" ) }}
- <div class="col-md-5 py-2">
- <div class="pb-2">
- <div class="card border-r border-0 shadow h-100 m-2">
- <a class="text-decoration-none" target="_blank" href="{{ .Permalink }}">
- <img src='{{ .Params.img }}' class="card-img-top" height="250" alt="{{ .Title }}">
- </a>
- <div class="card-body pt-2 ">
- <h2>{{ .Title }}</h2>
- <p class="card-text pt-2">
- <span class="">
- Build your website with “Hugo” comment Go to the terminal and type “hugo” …
- </span>
-
- </p>
- <span class="float-right">
- {{ if .Params.featured }}
- <a href="{{ .Params.featured }}" class="px-1">
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
- <path
- d="M12 0c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12-5.373-12-12-12zm10 12c0 .685-.07 1.354-.202 2h-3.853c.121-1.283.129-2.621 0-4h3.853c.132.646.202 1.315.202 2zm-.841-4h-3.5c-.383-1.96-1.052-3.751-1.948-5.278 2.435.977 4.397 2.882 5.448 5.278zm-5.554 0h-2.605v-5.658c1.215 1.46 2.117 3.41 2.605 5.658zm-4.605-5.658v5.658h-2.605c.488-2.248 1.39-4.198 2.605-5.658zm0 7.658v4h-2.93c-.146-1.421-.146-2.577 0-4h2.93zm0 6v5.658c-1.215-1.46-2.117-3.41-2.605-5.658h2.605zm2 5.658v-5.658h2.605c-.488 2.248-1.39 4.198-2.605 5.658zm0-7.658v-4h2.93c.146 1.421.146 2.577 0 4h-2.93zm-4.711-11.278c-.896 1.527-1.565 3.318-1.948 5.278h-3.5c1.051-2.396 3.013-4.301 5.448-5.278zm-6.087 7.278h3.853c-.121 1.283-.129 2.621 0 4h-3.853c-.132-.646-.202-1.315-.202-2s.07-1.354.202-2zm.639 6h3.5c.383 1.96 1.052 3.751 1.948 5.278-2.435-.977-4.397-2.882-5.448-5.278zm12.87 5.278c.896-1.527 1.565-3.318 1.948-5.278h3.5c-1.051 2.396-3.013 4.301-5.448 5.278z" />
- </svg>
- </a>
- {{ end }}
- {{ if .Params.github }}
- <a href="{{ .Params.github }}" class="px-1 pr-2">
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
- <path
- d="M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z" />
- </svg>
- </a>
- {{ end }}
- <a class="btn btn-sm btn-outline-info" target="_blank" href="{{ .Permalink }}">Read
- more...</a>
- </span>
- </div>
-
- </div>
- </div>
- </div>
-
- {{ end }}
---> \ No newline at end of file
diff --git a/layouts/partials/sections/v3/scripts.html b/layouts/partials/sections/v3/scripts.html
deleted file mode 100644
index cb2bf0d..0000000
--- a/layouts/partials/sections/v3/scripts.html
+++ /dev/null
@@ -1,3 +0,0 @@
-<!-- javascripts -->
-<script src="/js/jquery.slim.min.js"></script>
-<script src="/js/bootstrap.min.js"></script> \ No newline at end of file