initial
6
archetypes/default.md
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
---
|
||||||
|
title: "{{ replace .Name "-" " " | title }}"
|
||||||
|
date: {{ .Date }}
|
||||||
|
draft: true
|
||||||
|
---
|
||||||
|
|
26
config.toml
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
baseURL = "https://verry.org"
|
||||||
|
languageCode = "en-us"
|
||||||
|
title = "Yann Verry"
|
||||||
|
theme = "hugo-scroll"
|
||||||
|
|
||||||
|
[params]
|
||||||
|
# A "copyright"-line to be added at the bottom of the page.
|
||||||
|
# Hint: Markdown is supported in here as well. So you may e.g. add a link to your legal imprint-page.
|
||||||
|
copyright = "copyleft Yann Verry"
|
||||||
|
|
||||||
|
# The "description" of your website. This is used in the meta data of your generated html.
|
||||||
|
description = "Yann Verry @ Home"
|
||||||
|
|
||||||
|
# The path to your "favicon". This should be a square (at least 32px x 32px) png-file.
|
||||||
|
favicon = "images/favicon.png"
|
||||||
|
|
||||||
|
# These "images" are used for the structured data templates. This will show up, when
|
||||||
|
# services like Twitter or Slack want to generate a preview of a link to your site.
|
||||||
|
# See https://gohugo.io/templates/internal#twitter-cards and
|
||||||
|
# https://gohugo.io/templates/internal#open-graph.
|
||||||
|
images = ["images/20200517_174205.jpg"]
|
||||||
|
|
||||||
|
# Another "title" :-). This one is used as the site_name on the Hugo's internal
|
||||||
|
# opengraph structured data template.
|
||||||
|
# See https://ogp.me/ and https://gohugo.io/templates/internal#open-graph.
|
||||||
|
title = "Yann Verry - home"
|
5
content/_index.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
header_image: "images/20200517_174205.webp"
|
||||||
|
header_headline: "Yann Verry"
|
||||||
|
header_subheadline: "Hi there , I'm an Infra guys and a dad"
|
||||||
|
---
|
12
content/homepage/about-me.md
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
---
|
||||||
|
title: "About Me"
|
||||||
|
weight: 3
|
||||||
|
header_menu: false
|
||||||
|
---
|
||||||
|
|
||||||
|
![Yann Verry](images/yverry.webp)
|
||||||
|
|
||||||
|
##### Professionel Experience
|
||||||
|
|
||||||
|
Head of Infrastructure & Operations at [bedrock](https://bedrockstreaming.com). Scaling, automatisation, webperf is my challenge.
|
||||||
|
15+ years of XP in web company.
|
15
content/homepage/contact.md
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
---
|
||||||
|
title: "Contact"
|
||||||
|
weight: 4
|
||||||
|
header_menu: false
|
||||||
|
---
|
||||||
|
|
||||||
|
E-Mail: contact _at_ verry -dot- org
|
||||||
|
|
||||||
|
[@yverry](https://twitter.com/yverry)
|
||||||
|
|
||||||
|
[Linkedin](https://www.linkedin.com/public-profile/in/yann-verry-72bb384)
|
||||||
|
|
||||||
|
[Github](https://github.com/yverry/)
|
||||||
|
|
||||||
|
Let us get in touch!
|
3
content/homepage/index.md
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
---
|
||||||
|
headless: true
|
||||||
|
---
|
11
content/homepage/opener.md
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
---
|
||||||
|
title: "Welcome"
|
||||||
|
weight: 1
|
||||||
|
header_menu: false
|
||||||
|
---
|
||||||
|
|
||||||
|
Hi there!
|
||||||
|
|
||||||
|
Welcome on my home page, this website is for experiment only with some stuff.
|
||||||
|
Many guys say "you are crazy", my job is cloud only and I still continue to keep at home all my stuff.
|
||||||
|
I wrote some post (~~mostly~~ in french) on my [blog](https://yann.verry.org).
|
62
layouts/partials/custom_head.html
Normal file
|
@ -0,0 +1,62 @@
|
||||||
|
<!-- A partial to be overwritten by the user.
|
||||||
|
Its content will appear before the closing </head>-tag -->
|
||||||
|
|
||||||
|
<!-- Custom CSS via inline styles
|
||||||
|
You may use this template to add custom CSS to your site like so: -->
|
||||||
|
|
||||||
|
<!-- <style>
|
||||||
|
/* Links */
|
||||||
|
a:hover {
|
||||||
|
color: #b6b84c;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Header Buttons on Startpage */
|
||||||
|
a.btn {
|
||||||
|
color: white;
|
||||||
|
background-color: #ced067;
|
||||||
|
}
|
||||||
|
a.btn:hover {
|
||||||
|
background-color: #b6b84c;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Scroll Menu on Startpage */
|
||||||
|
a.fn-item.active {
|
||||||
|
color: #b6b84c;
|
||||||
|
}
|
||||||
|
a.fn-item:hover {
|
||||||
|
color: #ced067;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Content / Sections */
|
||||||
|
.post-holder.odd {
|
||||||
|
background: #B80135;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
.post-holder {
|
||||||
|
background: #f2efe8;
|
||||||
|
}
|
||||||
|
body {
|
||||||
|
color: #3A4145;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Footer */
|
||||||
|
.site-footer {
|
||||||
|
color: #BBC7CC;
|
||||||
|
background-color: #22343A;
|
||||||
|
}
|
||||||
|
</style> -->
|
||||||
|
|
||||||
|
<!-- Custom CSS via "custom.css"-file
|
||||||
|
If you would rather place your custom CSS into
|
||||||
|
a separate file, create a "custom.css" in your
|
||||||
|
local "static/css"-directory. Then add a <link>-tag
|
||||||
|
referencing your "custom.css" like so: -->
|
||||||
|
|
||||||
|
<!-- <link rel="stylesheet" href='{{ "css/custom.css" | absURL }}'> -->
|
||||||
|
|
||||||
|
<!-- Custom CSS: Color Codes
|
||||||
|
You may checkout https://htmlcolorcodes.com/ to get those
|
||||||
|
weird color codes (like "#22343A") ;-). -->
|
||||||
|
|
||||||
|
<!-- Custom link-tags for different icons
|
||||||
|
Generated via https://favicon.io/favicon-generator/ -->
|
|
@ -0,0 +1,291 @@
|
||||||
|
* {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
-webkit-box-sizing: border-box;
|
||||||
|
box-sizing: border-box; }
|
||||||
|
|
||||||
|
html {
|
||||||
|
background-color: #39424E;
|
||||||
|
font-family: "Didact Gothic", "sans serif";
|
||||||
|
font-size: 16px; }
|
||||||
|
|
||||||
|
body {
|
||||||
|
font-size: 16px;
|
||||||
|
font-family: "Didact Gothic", "sans serif";
|
||||||
|
color: #fff;
|
||||||
|
line-height: 2rem;
|
||||||
|
letter-spacing: 1.5px;
|
||||||
|
text-shadow: none;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
opacity: 1; }
|
||||||
|
|
||||||
|
header {
|
||||||
|
padding: 6em 1em 1em 0; }
|
||||||
|
@media screen and (max-width: 736px) {
|
||||||
|
header {
|
||||||
|
padding: 3em 0; } }
|
||||||
|
h1, h2, h3 {
|
||||||
|
margin-bottom: 0.5em;
|
||||||
|
font-family: 'Didact Gothic', sans-serif;
|
||||||
|
opacity: 0.6; }
|
||||||
|
|
||||||
|
li {
|
||||||
|
opacity: 0.8; }
|
||||||
|
li a {
|
||||||
|
opacity: 0.9; }
|
||||||
|
|
||||||
|
ul {
|
||||||
|
list-style-type: none; }
|
||||||
|
|
||||||
|
p {
|
||||||
|
display: inline; }
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: #cccccc;
|
||||||
|
text-decoration: none;
|
||||||
|
border-bottom: 2px solid #cccccc;
|
||||||
|
transition: 0.5s ease; }
|
||||||
|
a:hover {
|
||||||
|
color: #fff;
|
||||||
|
font-style: none; }
|
||||||
|
a:active {
|
||||||
|
color: #cccccc; }
|
||||||
|
|
||||||
|
hr {
|
||||||
|
margin: 1rem 0;
|
||||||
|
background-color: transparent;
|
||||||
|
width: 50%;
|
||||||
|
border-style: solid;
|
||||||
|
border-width: 1px;
|
||||||
|
opacity: 0.3; }
|
||||||
|
|
||||||
|
nav {
|
||||||
|
margin: 1em auto; }
|
||||||
|
|
||||||
|
.wrap {
|
||||||
|
margin: 0 auto;
|
||||||
|
width: 45%;
|
||||||
|
max-width: 64em; }
|
||||||
|
@media screen and (max-width: 736px) {
|
||||||
|
.wrap {
|
||||||
|
width: 90%; } }
|
||||||
|
.tag-container {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
justify-content: flex-start;
|
||||||
|
align-items: center; }
|
||||||
|
|
||||||
|
.tag {
|
||||||
|
background-color: transparent;
|
||||||
|
position: relative;
|
||||||
|
bottom: 0; }
|
||||||
|
|
||||||
|
.flex-container {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: flex-start; }
|
||||||
|
|
||||||
|
.bottom-menu {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
text-align: center; }
|
||||||
|
|
||||||
|
.footer {
|
||||||
|
width: 100%;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
text-align: center;
|
||||||
|
background-color: transparent;
|
||||||
|
position: relative;
|
||||||
|
bottom: 0;
|
||||||
|
padding: 1rem;
|
||||||
|
font-family: "Didact Gothic", "sans serif";
|
||||||
|
font-size: 1rem;
|
||||||
|
line-height: 1em;
|
||||||
|
opacity: 0.8; }
|
||||||
|
.footer a {
|
||||||
|
border-bottom: none;
|
||||||
|
display: contents; }
|
||||||
|
|
||||||
|
#splash {
|
||||||
|
min-height: calc(100vh - 6em); }
|
||||||
|
|
||||||
|
.big-link {
|
||||||
|
font-family: "Didact Gothic", "sans serif";
|
||||||
|
font-size: 3rem;
|
||||||
|
font-weight: 300;
|
||||||
|
margin-bottom: 2rem;
|
||||||
|
line-height: 1.5em; }
|
||||||
|
|
||||||
|
#title {
|
||||||
|
margin-top: 3rem;
|
||||||
|
font-family: "Didact Gothic", "sans serif";
|
||||||
|
font-size: 2rem;
|
||||||
|
line-height: 3rem;
|
||||||
|
margin-bottom: 2rem; }
|
||||||
|
|
||||||
|
article {
|
||||||
|
width: 100%;
|
||||||
|
line-height: 2em;
|
||||||
|
letter-spacing: 2px; }
|
||||||
|
article div {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
margin-bottom: 1em; }
|
||||||
|
article h1, article h2, article h3 {
|
||||||
|
margin: 1em 0em;
|
||||||
|
text-align: left; }
|
||||||
|
article p {
|
||||||
|
display: block;
|
||||||
|
margin-bottom: 1em;
|
||||||
|
line-height: 1.6;
|
||||||
|
letter-spacing: 1.5px; }
|
||||||
|
article .highlight {
|
||||||
|
width: 100%; }
|
||||||
|
article pre {
|
||||||
|
line-height: 2rem;
|
||||||
|
border-radius: 3px;
|
||||||
|
padding: 1rem;
|
||||||
|
overflow-x: auto;
|
||||||
|
background-color: #000004;
|
||||||
|
width: 100%;
|
||||||
|
margin-bottom: 1em; }
|
||||||
|
article pre > code {
|
||||||
|
border: none; }
|
||||||
|
article code {
|
||||||
|
font-size: 0.9rem;
|
||||||
|
font-family: 'Source Code Pro', monospace;
|
||||||
|
padding: 0.1rem;
|
||||||
|
border-radius: 3px;
|
||||||
|
border: 1px solid #cccccc; }
|
||||||
|
article img {
|
||||||
|
width: 100%;
|
||||||
|
max-width: 100%;
|
||||||
|
display: block;
|
||||||
|
margin: 2rem auto;
|
||||||
|
opacity: 1; }
|
||||||
|
article blockquote {
|
||||||
|
background-color: #cccccc;
|
||||||
|
color: #39424E;
|
||||||
|
padding: 2rem;
|
||||||
|
margin: 2rem 1rem 2rem 1rem;
|
||||||
|
border-radius: 3px; }
|
||||||
|
article blockquote a {
|
||||||
|
color: #111; }
|
||||||
|
article blockquote ul {
|
||||||
|
margin-top: 1rem; }
|
||||||
|
article blockquote li {
|
||||||
|
list-style: disc; }
|
||||||
|
article table {
|
||||||
|
width: 100%;
|
||||||
|
border-collapse: collapse;
|
||||||
|
margin: 1rem 0;
|
||||||
|
overflow-x: auto; }
|
||||||
|
article table th {
|
||||||
|
font-size: 0.9rem; }
|
||||||
|
article table td, article table th {
|
||||||
|
padding: 2px 5px;
|
||||||
|
text-align: center;
|
||||||
|
border: 1px solid #cccccc; }
|
||||||
|
article li {
|
||||||
|
line-height: 2;
|
||||||
|
padding-left: 0.4rem; }
|
||||||
|
article li:last-child {
|
||||||
|
margin-bottom: 1rem; }
|
||||||
|
article ul {
|
||||||
|
list-style: disc outside;
|
||||||
|
padding-left: 2rem; }
|
||||||
|
article ol {
|
||||||
|
list-style: decimal outside;
|
||||||
|
padding-left: 2rem; }
|
||||||
|
article .gist {
|
||||||
|
max-width: 100%; }
|
||||||
|
article .gist td, article .gist th {
|
||||||
|
text-align: left;
|
||||||
|
border: 0; }
|
||||||
|
article .gist .gist-meta {
|
||||||
|
background-color: transparent;
|
||||||
|
color: #fff; }
|
||||||
|
article .gist .gist-meta a {
|
||||||
|
color: #fff; }
|
||||||
|
|
||||||
|
.tag {
|
||||||
|
padding: 0.25em 0em;
|
||||||
|
margin-right: 0.5em;
|
||||||
|
opacity: 0.6; }
|
||||||
|
|
||||||
|
.grid {
|
||||||
|
margin: 1em auto;
|
||||||
|
display: grid;
|
||||||
|
grid-gap: 20px;
|
||||||
|
grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
|
||||||
|
grid-auto-rows: 400px; }
|
||||||
|
@media screen and (max-width: 736px) {
|
||||||
|
.grid {
|
||||||
|
grid-template-columns: repeat(auto-fit, minmax(100%, 1fr)); } }
|
||||||
|
.grid.keep-aspect-ratio {
|
||||||
|
grid-auto-rows: auto;
|
||||||
|
place-items: start; }
|
||||||
|
|
||||||
|
.grid > div {
|
||||||
|
background-color: transparent;
|
||||||
|
overflow: hidden; }
|
||||||
|
|
||||||
|
.grid > div > img {
|
||||||
|
height: 100%;
|
||||||
|
width: 100%;
|
||||||
|
object-fit: cover;
|
||||||
|
opacity: 1; }
|
||||||
|
|
||||||
|
.grid > div > a {
|
||||||
|
border-bottom: none; }
|
||||||
|
|
||||||
|
.grid > div > a > img {
|
||||||
|
height: 100%;
|
||||||
|
width: 100%;
|
||||||
|
object-fit: cover;
|
||||||
|
opacity: 1; }
|
||||||
|
|
||||||
|
.video {
|
||||||
|
position: fixed;
|
||||||
|
z-index: -1; }
|
||||||
|
|
||||||
|
#overlay {
|
||||||
|
position: fixed;
|
||||||
|
height: 100%;
|
||||||
|
width: 100%;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
background: rgba(0, 0, 0, 0.4);
|
||||||
|
z-index: -1; }
|
||||||
|
|
||||||
|
@media (min-aspect-ratio: 16/9) {
|
||||||
|
.video {
|
||||||
|
width: 100%;
|
||||||
|
height: auto; } }
|
||||||
|
|
||||||
|
@media (max-aspect-ratio: 16/9) {
|
||||||
|
.video {
|
||||||
|
width: auto;
|
||||||
|
height: 100%; } }
|
||||||
|
|
||||||
|
.go-left {
|
||||||
|
justify-content: flex-start;
|
||||||
|
align-items: flex-start; }
|
||||||
|
|
||||||
|
.go-right {
|
||||||
|
justify-content: flex-end;
|
||||||
|
align-items: flex-end; }
|
||||||
|
|
||||||
|
.go-center {
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center; }
|
||||||
|
|
||||||
|
/*# sourceMappingURL=main.css.map */
|
|
@ -0,0 +1 @@
|
||||||
|
{"Target":"css/main.css","MediaType":"text/css","Data":{}}
|
BIN
static/.DS_Store
vendored
Normal file
70
static/8B91727DEA5617EEE2FCD56219754E8692B8416C
Normal file
|
@ -0,0 +1,70 @@
|
||||||
|
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||||||
|
|
||||||
|
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
|
||||||
|
RdOYwFkMy5fqQbez6hkc5pYo
|
||||||
|
=Q4nR
|
||||||
|
-----END PGP PUBLIC KEY BLOCK-----
|
70
static/92B8416C
Normal file
|
@ -0,0 +1,70 @@
|
||||||
|
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||||||
|
|
||||||
|
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
|
||||||
|
RdOYwFkMy5fqQbez6hkc5pYo
|
||||||
|
=Q4nR
|
||||||
|
-----END PGP PUBLIC KEY BLOCK-----
|
BIN
static/favicon.ico
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
static/images/.DS_Store
vendored
Normal file
BIN
static/images/20200517_174205.jpg
Normal file
After Width: | Height: | Size: 689 KiB |
BIN
static/images/20200517_174205.webp
Normal file
After Width: | Height: | Size: 564 KiB |
BIN
static/images/orig_20200517_174205.jpg
Normal file
After Width: | Height: | Size: 4.9 MiB |
BIN
static/images/orig_yverry.jpg
Normal file
After Width: | Height: | Size: 442 KiB |
BIN
static/images/yverry.jpg
Normal file
After Width: | Height: | Size: 82 KiB |
BIN
static/images/yverry.webp
Normal file
After Width: | Height: | Size: 30 KiB |