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

github.com/wileybaba/hugo-theme-robotico.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwileybaba <wileymckayconte@gmail.com>2018-10-31 09:03:26 +0300
committerwileybaba <wileymckayconte@gmail.com>2018-10-31 09:03:26 +0300
commit23a9b1ff401bf6238011cdfed4219605a20af728 (patch)
treec2595a904e58e97a715b2fa6faf9fb4b60ea1b9b
adding my theme to github
-rw-r--r--LICENSE.md9
-rw-r--r--README.md36
-rw-r--r--exampleSite/config.toml21
-rw-r--r--exampleSite/content/_index.en.md36
-rw-r--r--exampleSite/content/_index.es.md3
-rw-r--r--layouts/404.html12
-rw-r--r--layouts/_default/baseof.html97
-rw-r--r--layouts/index.html51
-rw-r--r--layouts/partials/content.html6
-rw-r--r--layouts/partials/footer.html71
-rw-r--r--layouts/partials/header.html54
-rw-r--r--layouts/portfolio/list.html29
-rw-r--r--static/css/main.css276
-rw-r--r--static/img/email.svg41
-rw-r--r--static/img/git.svg1
-rw-r--r--static/img/instagram.svg1
-rw-r--r--static/img/twitter.svg1
-rw-r--r--theme.toml15
18 files changed, 760 insertions, 0 deletions
diff --git a/LICENSE.md b/LICENSE.md
new file mode 100644
index 0000000..3df2411
--- /dev/null
+++ b/LICENSE.md
@@ -0,0 +1,9 @@
+The MIT License (MIT)
+
+Copyright (c) 2018 Wiley McKay Conte
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..2901769
--- /dev/null
+++ b/README.md
@@ -0,0 +1,36 @@
+#hugo-minimo-theme
+
+A stripped down, [alageek](https://github.com/gkmngrgn/hugo-alageek-theme/tree/a7789a01391c9357fba13704379089e8799adad8) based theme with an added portfolio/light-box gallery for artists/photographers to display their work. Responsive with Bootstrap 4, Progressively.js, Latex support, and more.
+
+## Dependencies
+* Bootstrap 4.1.3
+* Highlight.js 9.12.0
+* Jquery slim 3.3.1
+* Progressively 1.2.5
+* Webfont 1.6.28
+* Ekko-lightbox 5.3.0
+
+## Configuration
+All features can be accessed by adding code to your config.toml
+* See the example site to get an idea of how to use the available params.
+
+For your home page, create and edit an `_index.md` file with your content.
+
+### Gallery setup
+In your config.toml, you can easily add images to your gallery. Here is an example:
+`[[params.portfolio]]
+
+link = "img/pots/example_01.jpg"
+
+[[params.portfolio]]
+
+link = "/img/portfolio/example_02.jpg"
+
+[[params.portfolio]]
+
+link = "/img/portfolio/example_03.jpg"
+`
+This will import a relative URL, so be sure to use the appropriate file path for your images.
+
+## License
+MIT License...check out the LICENSE.md for more info.
diff --git a/exampleSite/config.toml b/exampleSite/config.toml
new file mode 100644
index 0000000..941004f
--- /dev/null
+++ b/exampleSite/config.toml
@@ -0,0 +1,21 @@
+baseURL = "https://example.com"
+title = "Your Awesome Website"
+theme = "minimo"
+paginate = 3
+
+[params]
+logofile = "wileys.website/img/Robobrand.png"
+faviconfile = "wileys.website/img/Robobrand.png"
+copyright = "Wiley McKay Conte 2018"
+github = "wileybaba"
+email = "baba@example.com"
+twitter = "wiley_baba"
+instagram = "wileybaba"
+fork = "github.com/wileybaba/minimo_hugo_theme"
+progressively = true
+
+defaultContentLanguage = 'en'
+
+[[params.portfolio]]
+
+link = ""
diff --git a/exampleSite/content/_index.en.md b/exampleSite/content/_index.en.md
new file mode 100644
index 0000000..595adbc
--- /dev/null
+++ b/exampleSite/content/_index.en.md
@@ -0,0 +1,36 @@
+#hugo-minimo-theme
+
+A stripped down, [alageek](https://github.com/gkmngrgn/hugo-alageek-theme/tree/a7789a01391c9357fba13704379089e8799adad8) based theme with an added portfolio/light-box gallery for artists/photographers to display their work. Responsive with Bootstrap 4, Progressively.js, Latex support, and more.
+
+## Dependencies
+* Bootstrap 4.1.3
+* Highlight.js 9.12.0
+* Jquery slim 3.3.1
+* Progressively 1.2.5
+* Webfont 1.6.28
+* Ekko-lightbox 5.3.0
+
+## Configuration
+All features can be accessed by adding code to your config.toml
+* See the example site to get an idea of how to use the available params.
+
+For your home page, create and edit an `_index.md` file with your content.
+
+### Gallery setup
+In your config.toml, you can easily add images to your gallery. Here is an example:
+`[[params.portfolio]]
+
+link = "img/pots/example_01.jpg"
+
+[[params.portfolio]]
+
+link = "/img/portfolio/example_02.jpg"
+
+[[params.portfolio]]
+
+link = "/img/portfolio/example_03.jpg"
+`
+This will import a relative URL, so be sure to use the appropriate file path for your images.
+
+## License
+MIT License...check out the LICENSE.md for more info.
diff --git a/exampleSite/content/_index.es.md b/exampleSite/content/_index.es.md
new file mode 100644
index 0000000..2842957
--- /dev/null
+++ b/exampleSite/content/_index.es.md
@@ -0,0 +1,3 @@
+## Hugo Minimo Theme
+
+# Pon su `_index.md` en Español aqui.
diff --git a/layouts/404.html b/layouts/404.html
new file mode 100644
index 0000000..d552a63
--- /dev/null
+++ b/layouts/404.html
@@ -0,0 +1,12 @@
+{{ define "main" }}
+ <div class="container">
+ <div class="my-5 text-center">
+ {{ if isset .Site.Params "logofile" }}
+ <img src="{{ .Site.Params.logofile | absURL }}" alt="logo" style="max-height:125px;" />
+ {{ end }}
+ <h1 class="my-5">404</h1>
+ <h2 class="mb-3">The page you were looking for does not exist.</h2>
+ <a href="/">Visit the home page</a>
+ </div>
+ </div>
+{{ end }}
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
new file mode 100644
index 0000000..8a08945
--- /dev/null
+++ b/layouts/_default/baseof.html
@@ -0,0 +1,97 @@
+<!DOCTYPE html>
+<html lang="{{ .Site.LanguageCode }}">
+
+<head>
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
+ <title>{{ block "title" . }}{{ .Title }} - {{ .Site.Title }}{{ end }}</title>
+ <meta name="HandheldFriendly" content="True">
+ <meta name="MobileOptimized" content="320">
+ <meta name="referrer" content="no-referrer">
+ <meta name="description" content="{{ .Description | default .Site.Params.description }}">
+ <meta property="og:site_name" content="{{ .Site.Title }}" />
+ <meta property="og:locale" content="nn_NO" />
+ <meta property="og:type" content="article" />
+ <meta property="og:url" content="{{ .Permalink }}" />
+ <meta property="og:title" content="{{ if .Title }}{{ .Title }}{{ else }}{{ .Site.Title }}{{ end }}" />
+ <meta property="og:image" content="{{ .Site.BaseURL }}{{ .Params.meta_img | default .Site.Params.logofile }}" />
+ <meta property="og:description" content="{{ .Description | default .Site.Params.description }}" />
+
+ {{ if .Site.Params.twitter }}
+ <meta property="twitter:site" content="@{{ .Site.Params.twitter }}">
+ {{ end }}
+
+ <meta property="twitter:title" content="{{ .Title | default .Site.Title }}" />
+ <meta property="twitter:image" content="{{ .Site.BaseURL }}{{ .Params.meta_img | default .Site.Params.logofile }}" />
+ <meta property="twitter:card" content="summary" />
+ <meta property="twitter:description" content="{{ .Description | default .Site.Params.description }}" />
+
+ <link rel="canonical" href="{{ .Permalink }}">
+
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha256-eSi1q2PG6J7g7ib17yAaWMcrr5GrtohYChqibrV7PBE=" crossorigin="anonymous" />
+
+ <link rel="stylesheet" href="{{ "css/main.css" | absURL }}"/>
+
+ {{ if .Site.Params.highlightjs }}
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/styles/vs.min.css" integrity="sha256-w6kCMnFvhY2tI1OnsYR/rb5DG9yFGodJknvFZOkp51E=" crossorigin="anonymous" />
+ {{ end }}
+
+ {{ if .Site.Params.progressively }}
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/progressively/1.2.5/progressively.min.css" integrity="sha256-xbqLYBMsjpuCihs+3Fgp/MFMtPdo2SWKoOjEWOqR4X0=" crossorigin="anonymous" />
+ {{ end }}
+
+ <link rel="shortcut icon"
+ href="{{ if .Site.Params.faviconfile }}{{ .Site.Params.faviconfile | absURL }}{{ else }}{{ .Site.BaseURL }}img/favicon.ico{{ end }}">
+
+ <noscript>
+ <link href="https://fonts.googleapis.com/css?family=Raleway:400,600,700" rel="stylesheet">
+ <link href="https://fonts.googleapis.com/css?family=Merriweather:300,300i,700,700i" rel="stylesheet">
+ </noscript>
+</head>
+
+<body>
+ {{ block "main" . }}{{ end }}
+
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.slim.min.js" integrity="sha256-3edrmyuQ0w65f8gfBsqowzjJe2iM6n0nKciPUp8y+7E=" crossorigin="anonymous"></script>
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha256-VsEqElsCHSGmnmHXGQzvoWjWwoznFSZc6hs7ARLRacQ=" crossorigin="anonymous"></script>
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/webfont/1.6.28/webfontloader.js" integrity="sha256-4O4pS1SH31ZqrSO2A/2QJTVjTPqVe+jnYgOWUVr7EEc=" crossorigin="anonymous"></script>
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/ekko-lightbox/5.3.0/ekko-lightbox.css" integrity="sha256-HAaDW5o2+LelybUhfuk0Zh2Vdk8Y2W2UeKmbaXhalfA=" crossorigin="anonymous" />
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/ekko-lightbox/5.3.0/ekko-lightbox.js" integrity="sha256-jGAkJO3hvqIDc4nIY1sfh/FPbV+UK+1N+xJJg6zzr7A=" crossorigin="anonymous"></script>
+ <script>
+ WebFont.load({
+ google: {
+ families: ['Raleway:400,600,700', 'Merriweather:300,300i,700,700i']
+ }
+ });
+ </script>
+
+ {{ if .Site.Params.highlightjs }}
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/highlight.min.js" integrity="sha256-/BfiIkHlHoVihZdc6TFuj7MmJ0TWcWsMXkeDFwhi0zw=" crossorigin="anonymous"></script>
+ {{ range .Site.Params.highlightjslanguages }}
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/languages/{{.}}.min.js" defer></script>
+ {{ end }}
+ <script>
+ window.addEventListener('load', function() {
+ hljs.initHighlighting();
+ }, true);
+ </script>
+ {{ end }}
+
+ {{ if .Site.Params.progressively }}
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/progressively/1.2.5/progressively.min.js" integrity="sha256-LvFVlLdfGI3WeEH+8Ni4kxLm02g2GlOfeGCGLXfRk/U=" crossorigin="anonymous"></script>
+ <script>
+ window.addEventListener('load', function() {
+ progressively.init({delay: 30, throttle: 50});
+ }, true);
+ </script>
+ {{ end }}
+
+ {{ if .Site.Params.uselatex }}
+ <script type="text/x-mathjax-config">
+ MathJax.Hub.Config({ tex2jax: { inlineMath: [['$','$'], ['\\(','\\)']] } });
+ </script>
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js" integrity="sha256-nvJJv9wWKEm88qvoQl9ekL2J+k/RWIsaSScxxlsrv8k=" crossorigin="anonymous"></script>
+ {{ end }}
+
+</body>
+</html>
diff --git a/layouts/index.html b/layouts/index.html
new file mode 100644
index 0000000..8ec54f1
--- /dev/null
+++ b/layouts/index.html
@@ -0,0 +1,51 @@
+{{ define "main" }}
+ {{ partial "header" . }}
+
+ <div class="content">
+ <div class="container">
+ <div class="row justify-content-center">
+ <div class="col-sm-12 col-md-10">
+ <div class="markdown">
+ {{ partial "content" . }}
+ </div>
+
+ {{ if isset .Site.Params "best_posts" }}
+ <div class="mx-0 mx-md-4 best-posts">
+ <div class="page-heading">📌 {{ i18n "pinned" }}</div>
+ <ul>
+ {{ range .Site.Params.best_posts }}
+ <li>
+ <a href="{{ .url }}">{{ .title }}</a>
+ </li>
+ {{ end }}
+ </ul>
+ </div>
+ {{ end }}
+
+ {{ if isset .Site.Params "latestpostcount" }}
+ <div class="mx-0 mx-md-4 posts">
+ {{ $nbPosts := len (where .Data.Pages "Section" "blog") }}
+ {{ if gt $nbPosts 0 }}
+ <div class="page-heading">Latest posts</div>
+ <ul class="px-0">
+ {{ range (first .Site.Params.latestpostcount (where .Pages "Section" "blog")).GroupByDate "Jan, 2006" "desc" }}
+ <li class="groupby">{{ .Key }}</li>
+ {{ range sort .Pages "Date" "desc" }}
+ {{ partial "list" . }}
+ {{ end }}
+ {{ end }}
+ </ul>
+
+ {{ if gt $nbPosts .Site.Params.latestpostcount }}
+ <a href="./blog/" class="font-italic mt-4 see-more">{{ i18n "see-more" }}</a>
+ {{ end }}
+ {{ end }}
+ </div>
+ {{ end }}
+ </div>
+ </div>
+ </div>
+ </div>
+
+ {{ partial "footer" . }}
+{{ end }}
diff --git a/layouts/partials/content.html b/layouts/partials/content.html
new file mode 100644
index 0000000..b4af9e9
--- /dev/null
+++ b/layouts/partials/content.html
@@ -0,0 +1,6 @@
+{{ if .Site.Params.progressively }}
+ {{ $newImage := (print "<figure class=\"progressive\"><img class=\"progressive__img progressive--not-loaded\" data-progressive=\"" .Site.BaseURL "$1/$2\" src=\"" .Site.BaseURL "$1/low/$2\" alt=$3 $4></figure>") }}
+ {{ .Content | replaceRE "<img src=\"/(.*)\\/(.*)\" alt=(.*) (.*)>" $newImage | safeHTML }}
+{{ else }}
+ {{ .Content }}
+{{ end }}
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html
new file mode 100644
index 0000000..7211d51
--- /dev/null
+++ b/layouts/partials/footer.html
@@ -0,0 +1,71 @@
+<div class="my-4 footer">
+ <div class="container">
+ <div class="row justify-content-center">
+ <div class="col-sm-12 col-md-5">
+ {{ if .Site.Params.copyright }}
+ <div class="mx-0 mx-md-3 text-left">
+ {{ if .Site.Params.copyrightUrl }}
+ <a href="{{ .Site.Params.copyrightUrl }}">{{ .Site.Params.copyright }}</a>
+ {{ else }}
+ <a href="{{ .Site.BaseURL }}license">{{ .Site.Params.copyright }}</a>
+ {{ end }}
+ </div>
+ {{ end }}
+ </div>
+ <div class="col-sm-12 col-md-5">
+ <div class="mx-0 mx-md-3 text-right">
+ {{ if .Site.Params._500px }}
+ <a href="https://500px.com/{{ .Site.Params._500px }}" target="_blank">
+ <img class="icon" src="{{ .Site.BaseURL }}img/500px.svg" alt="500px" />
+ </a>
+ {{ end }}
+
+ {{ if .Site.Params.github }}
+ <a href="https://github.com/{{ .Site.Params.github }}" target="_blank">
+ <img class="icon" src="{{ "github.svg" | relURL }}" alt="github" />
+ </a>
+ {{ end }}
+
+ {{ if .Site.Params.twitter }}
+ <a href="https://twitter.com/{{ .Site.Params.twitter }}" target="_blank">
+ <img class="icon" src="{{ "img/twitter.svg" | relURL }}" alt="twitter" title="my twitter" />
+ </a>
+ {{ end }}
+
+ {{ if .Site.Params.instagram }}
+ <a href="https://instagram.com/{{ .Site.Params.instagram }}" target="_blank">
+ <img class="icon" src="{{ "img/instagram.svg" | relURL }}" alt="instagram" title="my instagram" />
+ </a>
+ {{ end }}
+
+ {{ if .Site.Params.linkedin }}
+ <a href="https://www.linkedin.com/in/{{ .Site.Params.linkedin }}" target="_blank">
+ <img class="icon" src="{{ .Site.BaseURL }}img/linkedin.svg" alt="linkedin" />
+ </a>
+ {{ end }}
+
+ {{ if .Site.Params.email }}
+ <a href="mailto:{{ .Site.Params.email }}">
+ <img class="icon" src="{{ .Site.BaseURL }}img/email.svg" alt="email" title="email me" />
+ </a>
+ {{ end }}
+
+ {{ if .Site.Params.fork}}
+ <a href="#">
+ <img class="icon" src="{{ .Site.BaseURL }}img/git.svg" alt="fork this page" title="fork this theme" />
+ </a>
+ {{ end }}
+
+ {{ if .IsTranslated }}
+ <br />
+ {{ range .Translations }}
+ <a href="{{ .Permalink }}">
+ <strong>{{ upper .Language.LanguageName }}</strong>
+ </a>
+ {{ end }}
+ {{ end }}
+ </div>
+ </div>
+ </div>
+ </div>
+</div>
diff --git a/layouts/partials/header.html b/layouts/partials/header.html
new file mode 100644
index 0000000..1b982ea
--- /dev/null
+++ b/layouts/partials/header.html
@@ -0,0 +1,54 @@
+<div class="my-4 my-md-5 header">
+ <div class="container">
+ <div class="row cap">
+ <div class="col-auto offset-md-1 d-none d-md-block">
+ {{ if .Site.Params.logofile }}
+ <a href="{{ .Site.BaseURL }}">
+ <img class="ml-md-4 logo" src="{{ .Site.Params.logofile | absURL }}" alt="logo">
+ </a>
+ {{ end }}
+ </div>
+ <div class="col-auto align-self-center mr-auto">
+ <a href="{{ .Site.BaseURL }}">
+ <h1 class="font-weight-bold name">{{ .Site.Title }}</h1>
+ </a>
+
+ <ul class="nav nav-primary">
+ {{ range .Site.Menus.primary.ByWeight }}
+ <li class="nav-item">
+ <a class="text-uppercase nav-link{{ if .Identifier }} text-{{ .Identifier }}{{ end }}" href="{{ .URL }}">
+ {{ .Pre }}
+ {{ .Name }}
+ </a>
+ </li>
+ {{ end }}
+
+ {{ if .IsTranslated }}
+ <li class="ml-4">
+ <ul class="nav nav-languages">
+ {{ range .Translations }}
+ <li>
+ <a class="nav-link" href="{{ .Permalink }}">
+ <strong>{{ upper .Language }}</strong>
+ </a>
+ </li>
+ {{ end }}
+ </ul>
+ </li>
+ {{ end }}
+ </ul>
+
+ <ul class="nav nav-secondary">
+ {{ range .Site.Menus.secondary.ByWeight }}
+ <li class="nav-item">
+ <a class="text-uppercase font-weight-bold nav-link{{ if .Identifier }} text-{{ .Identifier }}{{ end }}" href="{{ .URL }}">
+ {{ .Pre }}
+ {{ .Name }}
+ </a>
+ </li>
+ {{ end }}
+ </ul>
+ </div>
+ </div>
+ </div>
+</div>
diff --git a/layouts/portfolio/list.html b/layouts/portfolio/list.html
new file mode 100644
index 0000000..9c7fe9c
--- /dev/null
+++ b/layouts/portfolio/list.html
@@ -0,0 +1,29 @@
+{{ define "main" }}
+ {{ partial "header" . }}
+
+ <div class="col-sm-12">
+ <div class="card-columns">
+ {{ if .Site.Params.portfolio }}
+ {{ range .Site.Params.portfolio }}
+ <div class="card">
+ <a href="{{ .link | relURL }}" data-toggle="lightbox" data-gallery="gallery">
+ <img src="{{ .link | relURL }}" class="card-image img-fluid rounded">
+ </a>
+ </div>
+ {{ end }}
+ {{ end }}
+ </div>
+ </div>
+
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.slim.min.js" integrity="sha256-3edrmyuQ0w65f8gfBsqowzjJe2iM6n0nKciPUp8y+7E=" crossorigin="anonymous"></script>
+ <script>
+ $(document).on("click", '[data-toggle="lightbox"]', function(event) {
+ event.preventDefault();
+ $(this).ekkoLightbox({
+ alwaysShowClose: true
+ });
+ });
+ </script>
+
+ {{ partial "footer" }}
+{{ end }}
diff --git a/static/css/main.css b/static/css/main.css
new file mode 100644
index 0000000..79e95bb
--- /dev/null
+++ b/static/css/main.css
@@ -0,0 +1,276 @@
+/* Global styles */
+body {
+ font-family: "Raleway";
+}
+
+a {
+ color: #5188ef;
+ transition: color 0.1s cubic-bezier(0.47, 0, 0.75, 0.72);
+ -webkit-transition: color 0.1s cubic-bezier(0.47, 0, 0.75, 0.72);
+ -moz-transition: color 0.1s cubic-bezier(0.47, 0, 0.75, 0.72);
+ -ms-transition: color 0.1s cubic-bezier(0.47, 0, 0.75, 0.72);
+ -o-transition: color 0.1s cubic-bezier(0.47, 0, 0.75, 0.72);
+}
+
+a:hover {
+ color: #7e7ef7;
+}
+
+/* Partial: Colors */
+.text-patreon {
+ color: #51ef7e !important;
+}
+
+.text-ko-fi {
+ color: #5188ef !important;
+}
+
+.text-bmc {
+ color: #5188ef !important;
+}
+
+/* Partial: Header */
+.header a:hover {
+ text-decoration: none;
+}
+
+.header .logo {
+ max-height: 120px;
+}
+
+.header h1.name {
+ color: #333333;
+ font-size: 2.3rem;
+ font-family: "Helvetica Neue", "Arial", sans-serif;
+ letter-spacing: 0.1rem;
+}
+
+.header ul.nav li a {
+ color: #666666;
+ font-size: 18px;
+ padding: 3px 12px 0 5px;
+}
+
+.header ul.nav li a:hover {
+ color: #f4b642;
+ }
+
+.header ul.nav li:first-child a {
+ padding-left: 2px;
+}
+
+.header ul.nav li:last-child a {
+ padding-right: 2px;
+}
+
+/* Partial: Content */
+.content .page-heading {
+ font-size: 1.5rem;
+ font-weight: 700;
+ letter-spacing: -0.005rem;
+ text-transform: "capitalize";
+ -moz-osx-font-smoothing: grayscale;
+ -webkit-font-smoothing: antialiased;
+ color: #333333;
+ margin-bottom: 16px;
+}
+
+.content .meta {
+ font-size: 16px;
+ color: #666666;
+}
+
+.content .meta a {
+ text-decoration: none;
+}
+
+.content .middot:before {
+ font-size: 6px;
+ margin: 0 6px;
+ vertical-align: middle;
+ content: "•";
+}
+
+.content .tags ul li {
+ transition: opacity 0.1s cubic-bezier(0.47, 0, 0.75, 0.72);
+ -webkit-transition: opacity 0.1s cubic-bezier(0.47, 0, 0.75, 0.72);
+ -moz-transition: opacity 0.1s cubic-bezier(0.47, 0, 0.75, 0.72);
+ -ms-transition: opacity 0.1s cubic-bezier(0.47, 0, 0.75, 0.72);
+ -o-transition: opacity 0.1s cubic-bezier(0.47, 0, 0.75, 0.72);
+}
+
+.content .tags ul li:hover {
+ opacity: 0.7;
+}
+
+.content .tags ul li a {
+ color: #666666;
+}
+
+.content .markdown {
+ font-family: "Merriweather";
+ font-size: 1.3em;
+ line-height: 1.75em;
+ color: #313537;
+}
+
+.content twitterwidget {
+ margin: auto;
+}
+
+.content .meta,
+.content .markdown h1,
+.content .markdown h2,
+.content .markdown h3,
+.content .markdown h4,
+.content .markdown h5,
+.content .markdown h6,
+.content .markdown p,
+.content .markdown ul,
+.content .markdown ol,
+.content .markdown dl,
+.content .markdown blockquote {
+ margin-left: 1.5rem;
+ margin-right: 1.5rem;
+}
+
+.content .markdown code,
+.content .markdown pre {
+ font-family: "Menlo", monospace;
+ font-size: 0.98rem;
+ background-color: #f7f7f7;
+}
+
+.content .markdown code {
+ /* enclosed by single backtick (`) */
+ padding: 0.15em 0.5em;
+ border-radius: 2px;
+ color: #7adbbc;
+}
+
+.content .markdown pre {
+ /* Hugo specific: consider using the 'highlight' shortcode */
+ display: block;
+ margin-top: 1rem;
+ margin-bottom: 2rem;
+ padding: 1rem;
+ line-height: 1.5em;
+ white-space: pre;
+ word-break: break-all;
+ word-wrap: break-word;
+}
+
+.content .markdown pre code {
+ /* enclosed by 4 backticks (````) */
+ padding: 0;
+ font-size: 0.9rem;
+}
+
+.content .markdown blockquote {
+ padding: 0.5rem 0.5rem;
+ margin-top: 0.8rem;
+ margin-bottom: 0.8rem;
+ color: #7a7a7a;
+ border-left: 0.25rem solid #e5e5e5;
+}
+
+.content .markdown blockquote p:last-child {
+ margin-bottom: 0;
+}
+
+.content .markdown figure {
+ background: #fff;
+}
+
+.content .see-more {
+ font-size: 0.9em;
+ color: #313537;
+}
+
+.content .see-more:hover {
+ color: #666;
+}
+
+.content .groupby {
+ list-style: none;
+ margin-top: 1em;
+}
+
+.content .post-item {
+ display: -webkit-flex;
+ display: -moz-flex;
+ display: -ms-flexbox;
+ display: -ms-flex;
+ display: flex;
+}
+
+.content .post-item .meta {
+ color: #666666;
+ display: block;
+ font-size: 14px;
+ min-width: 100px;
+}
+
+.content .navigation .icon {
+ width: 16px;
+ height: 16px;
+}
+
+/* Partial: Footer */
+.footer a {
+ font-size: 14px;
+ margin-left: 6px;
+ margin-right: 6px;
+ opacity: 0.6;
+ transition: opacity 0.1s cubic-bezier(0.47, 0, 0.75, 0.72);
+ -webkit-transition: opacity 0.1s cubic-bezier(0.47, 0, 0.75, 0.72);
+ -moz-transition: opacity 0.1s cubic-bezier(0.47, 0, 0.75, 0.72);
+ -ms-transition: opacity 0.1s cubic-bezier(0.47, 0, 0.75, 0.72);
+ -o-transition: opacity 0.1s cubic-bezier(0.47, 0, 0.75, 0.72);
+ text-decoration: none;
+}
+
+.footer a:first-child {
+ margin-left: 0;
+}
+
+.footer a:last-child {
+ margin-right: 0;
+}
+
+.footer a:hover {
+ opacity: 0.8;
+}
+
+.footer a .icon {
+ width: 24px;
+ height: 24px;
+}
+
+.footer span.title {
+ font-size: 14px;
+ color: #666;
+}
+
+/* Small devices (landscape phones, less than 768px) */
+@media (max-width: 767.98px) {
+ html {
+ font-size: 0.8rem;
+ }
+
+ .content .meta,
+ .content .markdown h1,
+ .content .markdown h2,
+ .content .markdown h3,
+ .content .markdown h4,
+ .content .markdown h5,
+ .content .markdown h6,
+ .content .markdown p,
+ .content .markdown ul,
+ .content .markdown ol,
+ .content .markdown dl,
+ .content .markdown blockquote {
+ margin-left: 0;
+ margin-right: 0;
+ }
+}
diff --git a/static/img/email.svg b/static/img/email.svg
new file mode 100644
index 0000000..4015631
--- /dev/null
+++ b/static/img/email.svg
@@ -0,0 +1,41 @@
+<?xml version="1.0" encoding="iso-8859-1"?>
+<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+ viewBox="0 0 330.001 330.001" style="enable-background:new 0 0 330.001 330.001;" xml:space="preserve">
+<g id="XMLID_348_">
+ <path id="XMLID_350_" d="M173.871,177.097c-2.641,1.936-5.756,2.903-8.87,2.903c-3.116,0-6.23-0.967-8.871-2.903L30,84.602
+ L0.001,62.603L0,275.001c0.001,8.284,6.716,15,15,15L315.001,290c8.285,0,15-6.716,15-14.999V62.602l-30.001,22L173.871,177.097z"
+ />
+ <polygon id="XMLID_351_" points="165.001,146.4 310.087,40.001 19.911,40 "/>
+</g>
+<g>
+</g>
+<g>
+</g>
+<g>
+</g>
+<g>
+</g>
+<g>
+</g>
+<g>
+</g>
+<g>
+</g>
+<g>
+</g>
+<g>
+</g>
+<g>
+</g>
+<g>
+</g>
+<g>
+</g>
+<g>
+</g>
+<g>
+</g>
+<g>
+</g>
+</svg>
diff --git a/static/img/git.svg b/static/img/git.svg
new file mode 100644
index 0000000..b8c8898
--- /dev/null
+++ b/static/img/git.svg
@@ -0,0 +1 @@
+<svg aria-labelledby="simpleicons-git-icon" role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title id="simpleicons-git-icon">Git icon</title><path d="M23.546 10.93L13.067.452c-.604-.603-1.582-.603-2.188 0L8.708 2.627l2.76 2.76c.645-.215 1.379-.07 1.889.441.516.515.658 1.258.438 1.9l2.658 2.66c.645-.223 1.387-.078 1.9.435.721.72.721 1.884 0 2.604-.719.719-1.881.719-2.6 0-.539-.541-.674-1.337-.404-1.996L12.86 8.955v6.525c.176.086.342.203.488.348.713.721.713 1.883 0 2.6-.719.721-1.889.721-2.609 0-.719-.719-.719-1.879 0-2.598.182-.18.387-.316.605-.406V8.835c-.217-.091-.424-.222-.6-.401-.545-.545-.676-1.342-.396-2.009L7.636 3.7.45 10.881c-.6.605-.6 1.584 0 2.189l10.48 10.477c.604.604 1.582.604 2.186 0l10.43-10.43c.605-.603.605-1.582 0-2.187"/></svg> \ No newline at end of file
diff --git a/static/img/instagram.svg b/static/img/instagram.svg
new file mode 100644
index 0000000..a0fed10
--- /dev/null
+++ b/static/img/instagram.svg
@@ -0,0 +1 @@
+<svg aria-labelledby="simpleicons-instagram-icon" role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title id="simpleicons-instagram-icon">Instagram icon</title><path d="M12 0C8.74 0 8.333.015 7.053.072 5.775.132 4.905.333 4.14.63c-.789.306-1.459.717-2.126 1.384S.935 3.35.63 4.14C.333 4.905.131 5.775.072 7.053.012 8.333 0 8.74 0 12s.015 3.667.072 4.947c.06 1.277.261 2.148.558 2.913.306.788.717 1.459 1.384 2.126.667.666 1.336 1.079 2.126 1.384.766.296 1.636.499 2.913.558C8.333 23.988 8.74 24 12 24s3.667-.015 4.947-.072c1.277-.06 2.148-.262 2.913-.558.788-.306 1.459-.718 2.126-1.384.666-.667 1.079-1.335 1.384-2.126.296-.765.499-1.636.558-2.913.06-1.28.072-1.687.072-4.947s-.015-3.667-.072-4.947c-.06-1.277-.262-2.149-.558-2.913-.306-.789-.718-1.459-1.384-2.126C21.319 1.347 20.651.935 19.86.63c-.765-.297-1.636-.499-2.913-.558C15.667.012 15.26 0 12 0zm0 2.16c3.203 0 3.585.016 4.85.071 1.17.055 1.805.249 2.227.415.562.217.96.477 1.382.896.419.42.679.819.896 1.381.164.422.36 1.057.413 2.227.057 1.266.07 1.646.07 4.85s-.015 3.585-.074 4.85c-.061 1.17-.256 1.805-.421 2.227-.224.562-.479.96-.899 1.382-.419.419-.824.679-1.38.896-.42.164-1.065.36-2.235.413-1.274.057-1.649.07-4.859.07-3.211 0-3.586-.015-4.859-.074-1.171-.061-1.816-.256-2.236-.421-.569-.224-.96-.479-1.379-.899-.421-.419-.69-.824-.9-1.38-.165-.42-.359-1.065-.42-2.235-.045-1.26-.061-1.649-.061-4.844 0-3.196.016-3.586.061-4.861.061-1.17.255-1.814.42-2.234.21-.57.479-.96.9-1.381.419-.419.81-.689 1.379-.898.42-.166 1.051-.361 2.221-.421 1.275-.045 1.65-.06 4.859-.06l.045.03zm0 3.678c-3.405 0-6.162 2.76-6.162 6.162 0 3.405 2.76 6.162 6.162 6.162 3.405 0 6.162-2.76 6.162-6.162 0-3.405-2.76-6.162-6.162-6.162zM12 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm7.846-10.405c0 .795-.646 1.44-1.44 1.44-.795 0-1.44-.646-1.44-1.44 0-.794.646-1.439 1.44-1.439.793-.001 1.44.645 1.44 1.439z"/></svg> \ No newline at end of file
diff --git a/static/img/twitter.svg b/static/img/twitter.svg
new file mode 100644
index 0000000..b674108
--- /dev/null
+++ b/static/img/twitter.svg
@@ -0,0 +1 @@
+<svg aria-labelledby="simpleicons-twitter-icon" role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title id="simpleicons-twitter-icon">Twitter icon</title><path d="M23.954 4.569c-.885.389-1.83.654-2.825.775 1.014-.611 1.794-1.574 2.163-2.723-.951.555-2.005.959-3.127 1.184-.896-.959-2.173-1.559-3.591-1.559-2.717 0-4.92 2.203-4.92 4.917 0 .39.045.765.127 1.124C7.691 8.094 4.066 6.13 1.64 3.161c-.427.722-.666 1.561-.666 2.475 0 1.71.87 3.213 2.188 4.096-.807-.026-1.566-.248-2.228-.616v.061c0 2.385 1.693 4.374 3.946 4.827-.413.111-.849.171-1.296.171-.314 0-.615-.03-.916-.086.631 1.953 2.445 3.377 4.604 3.417-1.68 1.319-3.809 2.105-6.102 2.105-.39 0-.779-.023-1.17-.067 2.189 1.394 4.768 2.209 7.557 2.209 9.054 0 13.999-7.496 13.999-13.986 0-.209 0-.42-.015-.63.961-.689 1.8-1.56 2.46-2.548l-.047-.02z"/></svg> \ No newline at end of file
diff --git a/theme.toml b/theme.toml
new file mode 100644
index 0000000..0e10406
--- /dev/null
+++ b/theme.toml
@@ -0,0 +1,15 @@
+name = "minimo"
+license = "MIT"
+description = "A lightweight and blazing fast personal website theme"
+homepage = "#github link here"
+features = ["responsive", "gallery", "multilingual"]
+tags = ["fast", "responsive", "bootstrap", "personal"]
+
+[author]
+ name = "Wiley McKay Conte"
+ homepage = "https://wileys.Website"
+
+[original]
+ name = "Gökmen Görgen"
+ homepage = "https://gokmengorgen.net"
+ repo = "https://github.com/gkmngrgn/hugo-alageek-theme"