Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
jansche committed Jun 8, 2021
0 parents commit c4f76a8
Show file tree
Hide file tree
Showing 13 changed files with 165 additions and 0 deletions.
Binary file added .DS_Store
Binary file not shown.
6 changes: 6 additions & 0 deletions .gitmodules
@@ -0,0 +1,6 @@
[submodule "hallo-hugo"]
path = hallo-hugo
url = https://github.com/EmielH/hallo-hugo.git
[submodule "themes/hallo-hugo"]
path = themes/hallo-hugo
url = https://github.com/EmielH/hallo-hugo.git
6 changes: 6 additions & 0 deletions archetypes/default.md
@@ -0,0 +1,6 @@
---
title: "{{ replace .Name "-" " " | title }}"
date: {{ .Date }}
draft: true
---

40 changes: 40 additions & 0 deletions config.toml
@@ -0,0 +1,40 @@
baseURL = "https://t1dcyb.org/"
languageCode = "en-us"
title = "Hello, I'm Jan"
theme = "hallo-hugo"
[Author]
name = "Jan (he/him)"
[params]
greeting = "Hey."

[params.colors]
background = "#0073cf"
foreground = "#fff"
hover = "#ccc"

[[params.links]]
iconset = "fas"
icon = "info-circle"
title = "More about being a T1D Cyborg"
url = "#info"

[[params.links]]
icon = "github"
title = "Github"
url = "https://github.com/jansche"

[[params.links]]
iconset = "fas"
icon = "envelope"
title = "Email"
url = "mailto:jan@t1dcyb.org"

[[params.links]]
icon = "twitter"
title = "Twitter"
url = "https://twitter.com/jansche"

[[params.links]]
icon = "linkedin"
title = "LinkedIn"
url = "https://linkedin.com/in/janschenk"
2 changes: 2 additions & 0 deletions layouts/partials/content.html
@@ -0,0 +1,2 @@
<h3 id="info">More about being a T1D Cyborg</h3>
<p>I have Type 1 Diabetes, and I am using an artificial pancreas called a loop. I refer to myself as a Type 1 Diabetes cyborg, or a T1D cyborg, as I replaced a dysfunctional organ (my pancreas) through a technical device. Ask me all about it, I'm happy to explain every detail of it. </p>
9 changes: 9 additions & 0 deletions layouts/partials/introduction.html
@@ -0,0 +1,9 @@
<p>I do Developer Relations, and I'd love to shape and lead DevRel for your awesome company. You can hire me. This is what I am best at: </p>
<ul>
<li>Creating programs for developers</li>
<li>Advocating for Diversity, Equity and Inclusion</li>
<li>Leading teams empathically by servant leader principles</li>
<li>Learning. Always learning.</li>
<li>Growing my and others mindsets</li>
</ul>
<p><h2>Contact me to see if we are a fit!</h2></p>
@@ -0,0 +1,100 @@
html,
body {
color: #fff;
margin: 1rem;
padding: 0; }

html {
font-family: Montserrat, "Helvetica Neue", "Segoe UI", Helvetica, Arial, sans-serif;
font-size: 16px;
overflow-y: auto; }

body {
background-color: #0073cf; }

a {
-webkit-transition: color 0.2s ease-out;
-moz-transition: color 0.2s ease-out;
transition: color 0.2s ease-out;
color: #fff; }
a:hover {
color: #ccc; }

h1 {
font-size: 9rem; }

h2 {
font-size: 3rem;
font-weight: normal; }

h3 {
font-size: 2rem;
font-weight: normal; }

@media screen and (max-width: 992px) {
h1 {
font-size: 15vw; }
h2 {
font-size: 2.5rem; } }

img.portrait {
box-sizing: border-box;
border-radius: 50%;
border: 10px solid #fff;
margin: 2em 3em;
width: 100%;
height: auto;
max-width: 300px;
max-height: 300px; }

.column {
flex: 1; }

main .block {
display: flex; }

main .block.introduction {
margin-top: 20vh;
min-height: calc(100vh - 20vh); }

main .column.left {
text-align: end; }

main .column.right h1 {
margin-left: -10px;
/* Correction for margin of leftmost character. */
margin-bottom: 0.4em; }

main .column.right h2 {
margin-left: -4px;
/* Correction for margin of leftmost character. */
margin-top: 0; }

main .column.right .links {
margin-top: 2.5rem;
font-size: 1.5rem; }
main .column.right .links a {
margin-right: 0.5rem;
text-decoration: none; }

@media screen and (max-width: 992px) {
main .block {
flex-direction: column; }
main .block.introduction {
margin-top: 0; }
main .column.left {
text-align: center; }
main .column.right h1 {
margin-top: 0; }
main img.portrait {
margin: 0; } }

footer {
display: flex;
margin-top: 3rem;
font-size: 0.75rem; }
@media screen and (max-width: 992px) {
footer {
flex-direction: column; } }

/*# sourceMappingURL=style.css.map */
@@ -0,0 +1 @@
{"Target":"css/style.css","MediaType":"text/css","Data":{}}
Binary file added static/.DS_Store
Binary file not shown.
Binary file added static/images/.DS_Store
Binary file not shown.
Binary file added static/images/portrait.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/images/portrait.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions themes/hallo-hugo
Submodule hallo-hugo added at d31ffc

0 comments on commit c4f76a8

Please sign in to comment.