v3 development

This commit is contained in:
gurusabarish
2021-05-13 22:48:06 +05:30
parent 14d16483be
commit 54bcff5142
60 changed files with 3626 additions and 491 deletions
+33
View File
@@ -0,0 +1,33 @@
<div id="about" class="pt-3">
<div class="container-fluid">
<div class="text-light text-center h3">About Me</div>
<div class="row justify-content-center about">
<div class="col-md-6 about-content">
<div class="px-2" style="color: #8892b0;">
{{ .Site.Params.descripe_l1_person | markdownify }}
<br>
<br>
{{ .Site.Params.descripe_l2_person | markdownify }}
</div>
<div class="py-3 pl-2">
<a href="#contact" class="contact-btn btn">
Get In Touch
</a>
</div>
</div>
<div class="col-md-5 about-skill">
<div class="text-secondary text-center h4">Skills</div>
{{ range .Site.Params.skills }}
<div style="color: rgb(230, 241, 255)">
{{ .name }}
</div>
<div class="progress mb-4">
<div class="progress-bar" role="progressbar" style="width: {{ .percentage }}%;" aria-valuemin="0" aria-valuemax="100"></div>
</div>
{{ end }}
</div>
</div>
</div>
</div>
@@ -0,0 +1,27 @@
{{ $img:= "images/v1/background.png" }}
<section class="py-3" id="achievements">
<div class="container-fluid">
<div class="text-light text-center h3">Achievements</div>
<div class="row justify-content-center py-3 mx-2">
{{ range .Site.Params.achievements }}
{{ if .img }}
{{ $img = .img }}
{{ end }}
<div class="col-md-5 achiv-out px-4 px-md-2 my-2">
<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">
{{ .title }}
</h4>
<div class="text-secondary">
{{ .description }}
</div>
</div>
</div>
</div>
{{ end }}
</div>
</div>
</section>
+33
View File
@@ -0,0 +1,33 @@
<section id="contact">
<div class="container-fluid py-3">
<div class="text-light text-center h3">Get In Touch</div>
<div class="row justify-content-center px-md-5">
<div class="py-5 overflow-hidden col-md-4 d-none d-md-block">
<img class="contact-img" src="/contact.svg" />
</div>
<div class="py-5 col-md-5">
<form class="text-secondary px-3" method="get">
<div class="form-group">
<label for="name">Name</label>
<input type="text" class="form-control" name="name" id="name" placeholder="Your Name">
</div>
<div class="form-group">
<label for="email">Email address</label>
<input type="email" class="form-control" id="email" placeholder="example@email.com">
<small class="form-text text-muted">We'll never share your email with anyone else.</small>
</div>
<div class="form-group">
<label for="text">Content</label>
<textarea class="form-control" placeholder="Type Something ...." id="text" rows="3"></textarea>
</div>
<div class="text-center">
<button type="submit" class="btn btn-primary">Submit</button>
</div>
</form>
</div>
</div>
</div>
</section>
@@ -0,0 +1,27 @@
<section id="education">
<div class="container-fluid py-3">
<div class="text-light text-center h3">Education</div>
<div class="row row-eq-height 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 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">
<img class="edu-img" src="/education.svg">
</div>
</div>
</div>
</section>
@@ -0,0 +1,100 @@
<section id="experience">
<div class="container-fluid pt-3">
<div class="text-light 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">
<h4>
<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) }}
<a class="nav-link active" id="{{ .company }}-tab" data-toggle="pill" href="#{{ .company }}" role="tab" aria-controls="{{ .company }}" aria-selected="true">
{{ .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 }}
</div>
<div class="tab-content col-md-5 d-none d-md-block" id="v-pills-tabContent">
{{ range $index, $element := .Site.Params.experience }}
{{ if (eq $index 0) }}
<div class="tab-pane fade show active" id="{{ .company }}" role="tabpanel" aria-labelledby="{{ .company }}-tab">
<div class="h4">
<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">
<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 }}
<div class="tab-pane fade" id="v-pills-settings" role="tabpanel" aria-labelledby="v-pills-settings-tab">
<div class="h4">
<span class="text-primary">Google</span> - Software developer
</div>
<div>
<small>Feb 2019</small>
-
<small>Sep 2020</small>
</div>
<ul class="py-2 ex">
<li class="ex-item">Write modern, performant, maintainable code for a diverse array of client and internal projects</li>
<li class="ex-item">Write modern, performant, maintainable code for a diverse array of client and internal projects</li>
</ul>
</div>
</div>
</div>
</div>
</section>
+136
View File
@@ -0,0 +1,136 @@
<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; {{ dateFormat "2006" now }} All Rights Reserved
<div>
Made with
<svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-heart" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd"
d="M8 2.748l-.717-.737C5.6.281 2.514.878 1.4 3.053c-.523 1.023-.641 2.5.314 4.385.92 1.815 2.834 3.989 6.286 6.357 3.452-2.368 5.365-4.542 6.286-6.357.955-1.886.838-3.362.314-4.385C13.486.878 10.4.28 8.717 2.01L8 2.748zM8 15C-7.333 4.868 3.279-3.04 7.824 1.143c.06.055.119.112.176.171a3.12 3.12 0 0 1 .176-.17C12.72-3.042 23.333 4.867 8 15z" />
</svg>
and
<a href="https://github.com/gurusabarish/hugo-profile" aria-label="hugo" target="_blank">Hugo Profile</a>
by
<a href="https://github.com/gurusabarish" aria-label="github handle" target="_blank">Gurusabarish</a>
</div>
</div>
</div>
</div>
</footer>
+10
View File
@@ -0,0 +1,10 @@
<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/v3/v3.css" media="all">
+59
View File
@@ -0,0 +1,59 @@
<div class="container-fluid home">
<div class="py-5">
<div class="row justify-content-center intro">
<div class="col-md-7 name-container">
<div class="name">
<div class="text-warning" style="font-size: 15px;">
Hi there, I'm
</div>
<h1 class="text-primary">
{{ .Site.Params.name }}
</h1>
<h5 class="text-light">
{{ .Site.Params.profession }}
</h5>
</div>
<div class="row social pt-4">
{{ if .Site.Params.github }}
<a href="{{ .Site.Params.github }}" class="social-icon">
<i class="fab fa-lg fa-github"></i>
</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>
</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>
</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>
</a>
{{ end }}
</div>
<div class="pt-4 btn-intro">
<a href="#about" class="btn-know btn btn-outline-info">
About me
</a>
</div>
</div>
<div class="col-md-5 text-center">
{{ if .Site.Params.profile_image }}
<img class="profile rounded shadow-lg" src="{{ .Site.Params.profile_image }}" alt="{{ .Site.Params.name }}" class="rounded">
{{ end }}
</div>
</div>
</div>
</div>
+25
View File
@@ -0,0 +1,25 @@
<nav style="background-color: #0a192f;" class="pt-3 navbar-home navbar navbar-expand-lg navbar-dark">
<div class="container">
<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">
{{ 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>
+114
View File
@@ -0,0 +1,114 @@
<section id="projects">
<div class="container-fluid py-3">
<div class="text-light 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">
<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"></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">
<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"></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 }}
-->
@@ -0,0 +1,3 @@
<!-- javascripts -->
<script src="/js/jquery.slim.min.js"></script>
<script src="/js/bootstrap.min.js"></script>