Started building a Website with Jekyll based on Uno-Timeline
22
.devcontainer/devcontainer.json
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
|
||||
// README at: https://github.com/devcontainers/templates/tree/main/src/jekyll
|
||||
{
|
||||
"name": "Jekyll",
|
||||
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
|
||||
"image": "mcr.microsoft.com/devcontainers/jekyll:2-bullseye"
|
||||
|
||||
// Features to add to the dev container. More info: https://containers.dev/features.
|
||||
// "features": {},
|
||||
|
||||
// Use 'forwardPorts' to make a list of ports inside the container available locally.
|
||||
// "forwardPorts": [],
|
||||
|
||||
// Uncomment the next line to run commands after the container is created.
|
||||
// "postCreateCommand": "jekyll --version"
|
||||
|
||||
// Configure tool-specific properties.
|
||||
// "customizations": {},
|
||||
|
||||
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
|
||||
// "remoteUser": "root"
|
||||
}
|
||||
4
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
|
||||
.jekyll-cache/
|
||||
.htaccess
|
||||
.DS_Store
|
||||
26
.vscode/tasks.json
vendored
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
{
|
||||
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
||||
// for the documentation about the tasks.json format
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"label": "Serve",
|
||||
"type": "shell",
|
||||
"command": "bundle exec jekyll serve --livereload",
|
||||
"group": {
|
||||
"kind": "test",
|
||||
"isDefault": true
|
||||
},
|
||||
"isBackground": true,
|
||||
},
|
||||
{
|
||||
"label": "Build",
|
||||
"type": "shell",
|
||||
"command": "bundle exec jekyll build",
|
||||
"group": {
|
||||
"kind": "build",
|
||||
"isDefault": true
|
||||
},
|
||||
}
|
||||
]
|
||||
}
|
||||
21
LICENSE
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
MIT License
|
||||
|
||||
Copyright (c) 2020 Thomas Zühlke
|
||||
|
||||
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.
|
||||
37
README.md
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
# Jekyll-Uno with Projects as Timeline
|
||||
A Jekyll Theme, based on the Uno-Theme with a list of projects as Timeline.
|
||||
|
||||
## How does is look
|
||||
[Demo](https://www.zuehlke.cloud/)
|
||||

|
||||

|
||||

|
||||
|
||||
## Installation/Setup
|
||||
1. Download or clone repo `git clone https://github.com/tzuehlke/jekyll-uno-timeline.git`
|
||||
2. Enter the folder: `cd jekyll-uno-timeline/`
|
||||
3. Build it: `jekyll build`
|
||||
4. Start Jekyll server: `jekyll serve`
|
||||
5. Configure: `_config.yml`
|
||||
* at least set `font_awesome` or download and add the font in `head.html`
|
||||
|
||||
Access via: [http://localhost:4000/](http://localhost:4000/)
|
||||
|
||||
## Details/Features/Changes
|
||||
* based on the [Uno-Theme](https://github.com/joshgerdes/jekyll-uno), but:
|
||||
* removed everything with posts
|
||||
* `content-wrapper` can be shown or hidden with button
|
||||
* changed all icons to [Font-Awesome](https://fontawesome.com/)
|
||||
* updated google-analytics snipped
|
||||
* added [Meetup-Link](https://www.meetup.com/)
|
||||
* removed RSS
|
||||
* removed Disqus
|
||||
* using a Timeline-Design instead of posts, therefore no pagination anymore
|
||||
* using Timeline ([CSS](https://github.com/le4ker/personal-jekyll-theme/blob/master/css/timeline.scss), [HTML](https://github.com/le4ker/personal-jekyll-theme/blob/master/_includes/timeline.html) ) from [{ Personal } Jekyll Theme](https://github.com/le4ker/personal-jekyll-theme) for a list of projects, but:
|
||||
* still with 3 layouts for different screen-width, but without images on small screens
|
||||
* timeline information source is now `_data/projects.yaml`
|
||||
* always using the `timeline-inverted`-class, for text on the right side of the images
|
||||
* using [github_api.js](https://github.com/jarrekk/Jalpc/blob/master/static/js/github_api.js) from [Jalpc.](https://github.com/jarrekk/Jalpc), but:
|
||||
* changed the GitHub-URL for using with persons and organisations
|
||||
* added watchers number
|
||||
+
|
||||
46
_config.yml
Normal file
|
|
@ -0,0 +1,46 @@
|
|||
# Site settings
|
||||
title: Simeon "Waldo" Wallrath
|
||||
description: 'Business Card Page'
|
||||
url: 'https://waldo.works'
|
||||
baseurl: ''
|
||||
profilepic: '/images/Pic_01.jpg'
|
||||
secondprofilepic: '/images/Pic_02.png'
|
||||
bkimage: '/images/bk1.jpg'
|
||||
|
||||
author:
|
||||
name: 'Simeon Wallrath'
|
||||
email: waldo@waldo.works
|
||||
mastodon: waldo@chaos.social
|
||||
# facebook_username: joshgerdes
|
||||
github_username: waldehyd
|
||||
|
||||
|
||||
# Build settings
|
||||
destination: _site
|
||||
markdown: kramdown
|
||||
highlighter: rouge
|
||||
|
||||
sass:
|
||||
sass_dir: _sass
|
||||
style: compressed
|
||||
|
||||
kramdown:
|
||||
# use Github Flavored Markdown
|
||||
input: GFM
|
||||
# do not replace newlines by <br>s
|
||||
hard_wrap: false
|
||||
|
||||
#plugins: ['jekyll-paginate']
|
||||
exclude: ['README.md', 'screenshot-overview.png']
|
||||
|
||||
# PAGINATION
|
||||
#paginate: 5
|
||||
#paginate_path: "/blog/page:num"
|
||||
|
||||
collections:
|
||||
pages:
|
||||
output: true
|
||||
permalink: :slug/
|
||||
projects:
|
||||
output: true
|
||||
permalink: :slug/
|
||||
11
_data/gallery.yml
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
- image: /images/Pic_01.jpg
|
||||
title: "First Artwork"
|
||||
year: 2023
|
||||
|
||||
- image: /images/Pic_01.jpg
|
||||
title: "Second Artwork"
|
||||
year: 2024
|
||||
|
||||
- image: /images/Pic_01.jpg
|
||||
title: "Third Artwork"
|
||||
year: 2021
|
||||
20
_data/projects.yml
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
# projects section data
|
||||
- name: A repo with workflow, that downloads the current Pay-As-You-Go prices from Azure once a month and saves them in ~40MB files
|
||||
url: https://virtuos.world
|
||||
img: https://blog.zuehlke.cloud/wp-content/uploads/2024/04/AzureCostExportPAYG-Overview-945x293.png
|
||||
desc: asdasd
|
||||
|
||||
- name: A repo with workflow, that downloads the current Pay-As-You-Go prices from Azure once a month and saves them in ~40MB files
|
||||
url: https://virtuos.world
|
||||
img: https://blog.zuehlke.cloud/wp-content/uploads/2024/04/AzureCostExportPAYG-Overview-945x293.png
|
||||
desc: asdasd
|
||||
|
||||
- name: A repo with workflow, that downloads the current Pay-As-You-Go prices from Azure once a month and saves them in ~40MB files
|
||||
url: https://virtuos.world
|
||||
img: https://blog.zuehlke.cloud/wp-content/uploads/2024/04/AzureCostExportPAYG-Overview-945x293.png
|
||||
desc: asdasd
|
||||
|
||||
- name: A repo with workflow, that downloads the current Pay-As-You-Go prices from Azure once a month and saves them in ~40MB files
|
||||
url: https://virtuos.world
|
||||
img: https://blog.zuehlke.cloud/wp-content/uploads/2024/04/AzureCostExportPAYG-Overview-945x293.png
|
||||
desc: asdasd
|
||||
5
_includes/footer.html
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
|
||||
|
||||
<script type="text/javascript" src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
||||
<script type="text/javascript" src="{{ site.baseurl }}/js/main.js?{{site.time | date: '%s%N'}}"></script>
|
||||
<script type="text/javascript" src="{{ site.baseurl }}/js/github_api.js?{{site.time | date: '%s%N'}}"></script>
|
||||
69
_includes/head.html
Normal file
|
|
@ -0,0 +1,69 @@
|
|||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width initial-scale=1" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
{% if page.robots %}
|
||||
<meta name="robots" content="{{ page.robots }}">
|
||||
{% endif %}
|
||||
|
||||
<title>{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</title>
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
||||
<meta name="description" content="{% if page.excerpt %}{{ page.excerpt | strip_html }}{% else %}{{ site.description }}{% endif %}">
|
||||
<meta name="author" content="{{ site.author.name }}">
|
||||
<meta name="HandheldFriendly" content="True">
|
||||
<meta name="MobileOptimized" content="320">
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
||||
|
||||
<meta name="twitter:card" content="summary">
|
||||
<meta name="twitter:title" content="{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}">
|
||||
<meta name="twitter:description" content="{% if page.excerpt %}{{ page.excerpt | strip_html }}{% else %}{{ site.description }}{% endif %}">
|
||||
{% if site.author.twitter_username %}
|
||||
<meta name="twitter:creator" content="{{ site.author.twitter_username }}">
|
||||
{% endif %}
|
||||
<meta name="twitter:image" content="{{ site.baseurl }}/images/favicons/favicon-194x194.png" />
|
||||
|
||||
<meta property="og:type" content="article">
|
||||
<meta property="og:title" content="{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}">
|
||||
<meta property="og:description" content="{% if page.excerpt %}{{ page.excerpt | strip_html }}{% else %}{{ site.description }}{% endif %}">
|
||||
<meta property="og:image" content="{{ site.baseurl }}/images/favicons/favicon-194x194.png" />
|
||||
|
||||
<link rel="apple-touch-icon" sizes="57x57" href="{{ site.baseurl }}/images/favicons/apple-touch-icon-57x57.png">
|
||||
<link rel="apple-touch-icon" sizes="60x60" href="{{ site.baseurl }}/images/favicons/apple-touch-icon-60x60.png">
|
||||
<link rel="apple-touch-icon" sizes="72x72" href="{{ site.baseurl }}/images/favicons/apple-touch-icon-72x72.png">
|
||||
<link rel="apple-touch-icon" sizes="76x76" href="{{ site.baseurl }}/images/favicons/apple-touch-icon-76x76.png">
|
||||
<link rel="apple-touch-icon" sizes="114x114" href="{{ site.baseurl }}/images/favicons/apple-touch-icon-114x114.png">
|
||||
<link rel="apple-touch-icon" sizes="120x120" href="{{ site.baseurl }}/images/favicons/apple-touch-icon-120x120.png">
|
||||
<link rel="apple-touch-icon" sizes="144x144" href="{{ site.baseurl }}/images/favicons/apple-touch-icon-144x144.png">
|
||||
<link rel="apple-touch-icon" sizes="152x152" href="{{ site.baseurl }}/images/favicons/apple-touch-icon-152x152.png">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="{{ site.baseurl }}/images/favicons/apple-touch-icon-180x180.png">
|
||||
<link rel="icon" type="image/png" href="{{ site.baseurl }}/images/favicons/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="{{ site.baseurl }}/images/favicons/favicon-194x194.png" sizes="194x194">
|
||||
<link rel="icon" type="image/png" href="{{ site.baseurl }}/images/favicons/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/png" href="{{ site.baseurl }}/images/favicons/android-chrome-192x192.png" sizes="192x192">
|
||||
<link rel="icon" type="image/png" href="{{ site.baseurl }}/images/favicons/favicon-16x16.png" sizes="16x16">
|
||||
<link rel="manifest" href="{{ site.baseurl }}/images/favicons/manifest.json">
|
||||
<link rel="shortcut icon" href="{{ site.baseurl }}/images/favicons/favicon.ico">
|
||||
<meta name="msapplication-TileColor" content="#ffc40d">
|
||||
<meta name="msapplication-TileImage" content="{{ site.baseurl }}/images/favicons/mstile-144x144.png">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
|
||||
<link rel="stylesheet" href="{{ site.baseurl }}/css/main.css?{{site.time | date: '%s%N'}}">
|
||||
<link rel="canonical" href="{% if page.canonical %}{{ page.canonical }}{% else %}{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}{% endif %}">
|
||||
<link rel="alternate" type="application/rss+xml" title="{{ site.title }}" href="{{ site.baseurl }}/feed.xml">
|
||||
|
||||
{% if site.google_analytics %}
|
||||
<!-- Global site tag (gtag.js) - Google Analytics -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id={{ site.google_analytics }}"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('js', new Date());
|
||||
|
||||
gtag('config', '{{ site.google_analytics }}');
|
||||
</script>
|
||||
|
||||
{% endif %}
|
||||
|
||||
</head>
|
||||
130
_includes/header.html
Normal file
|
|
@ -0,0 +1,130 @@
|
|||
<span class="mobile btn-mobile-menu">
|
||||
<i class="fas fa-bars btn-mobile-menu__icon"></i>
|
||||
<i class="far fa-times-circle btn-mobile-close__icon hidden"></i>
|
||||
</span>
|
||||
|
||||
<header class="panel-cover" style="background-image: url({{ site.baseurl }}{{ site.bkimage }})">
|
||||
<div class="panel-main">
|
||||
|
||||
<div class="panel-main__inner panel-inverted">
|
||||
<div class="panel-main__content">
|
||||
<a href="{{ site.baseurl }}/" title="link to home of {{ site.title }}">
|
||||
<div class="user-images">
|
||||
<img src="{{ site.baseurl }}{{ site.profilepic }}" class="user-image" alt="My Profile Photo">
|
||||
<div class="user-divider"></div>
|
||||
<img src="{{ site.baseurl }}{{ site.secondprofilepic }}" class="user-image" alt="Second Profile Photo">
|
||||
</div>
|
||||
<h1 class="panel-cover__title panel-title">{{ site.title }}</h1>
|
||||
</a>
|
||||
<hr class="panel-cover__divider">
|
||||
<p class="panel-cover__description">
|
||||
PhD-Student in Chemistry Didactics, 3D-Artist, Musician, Game Developer
|
||||
</p>
|
||||
<hr class="panel-cover__divider panel-cover__divider--secondary">
|
||||
</div>
|
||||
|
||||
<div class="navigation-wrapper">
|
||||
|
||||
<nav class="cover-navigation navigation--social">
|
||||
<ul class="navigation">
|
||||
|
||||
<!-- https://mastodon.social/@tzuehlke@mstdn.social -->
|
||||
{% if site.author.mastodon %}
|
||||
<!-- Mastodon -->
|
||||
<li class="navigation__item">
|
||||
<a href="https://mastodon.social/@{{ site.author.mastodon }}" title="@{{ site.author.mastodon }} on Mastodon" target="_blank">
|
||||
<i class="fa-brands fa-mastodon"></i>
|
||||
<span class="label">Mastodon</span>
|
||||
</a>
|
||||
</li>
|
||||
{% endif %}
|
||||
|
||||
{% if site.author.twitter_username %}
|
||||
<!-- Twitter -->
|
||||
<li class="navigation__item">
|
||||
<a href="https://twitter.com/{{ site.author.twitter_username }}" title="@{{ site.author.twitter_username }} on Twitter" target="_blank">
|
||||
<!--<i class="icon icon-social-twitter"></i>-->
|
||||
<i class="fa-brands fa-twitter"></i>
|
||||
<span class="label">Twitter</span>
|
||||
</a>
|
||||
</li>
|
||||
{% endif %}
|
||||
|
||||
{% if site.author.facebook_username %}
|
||||
<!-- Facebook -->
|
||||
<li class="navigation__item">
|
||||
<a href="http://fb.me/{{ site.author.facebook_username }}" title="{{ site.author.facebook_username }} on Facebook" target="_blank">
|
||||
<!--<i class="icon icon-social-facebook"></i>-->
|
||||
<i class="fa-brands fa-facebook"></i>
|
||||
<span class="label">Facebook</span>
|
||||
</a>
|
||||
</li>
|
||||
{% endif %}
|
||||
|
||||
{% if site.author.linkedin_username %}
|
||||
<!-- LinkedIn -->
|
||||
<li class="navigation__item">
|
||||
<a href="https://www.linkedin.com/in/{{ site.author.linkedin_username }}" title="{{ site.author.linkedin_username }} on LinkedIn" target="_blank">
|
||||
<!--<i class="icon icon-social-linkedin"></i>-->
|
||||
<i class="fa-brands fa-linkedin"></i>
|
||||
<span class="label">LinkedIn</span>
|
||||
</a>
|
||||
</li>
|
||||
{% endif %}
|
||||
|
||||
{% if site.author.github_username %}
|
||||
<!-- GitHub -->
|
||||
<li class="navigation__item">
|
||||
<a href="https://www.github.com/{{ site.author.github_username }}" title="{{ site.author.github_username }} on GitHub" target="_blank">
|
||||
<!--<i class="icon icon-social-github"></i>-->
|
||||
<i class="fa-brands fa-github"></i>
|
||||
<span class="label">GitHub</span>
|
||||
</a>
|
||||
</li>
|
||||
{% endif %}
|
||||
|
||||
{% if site.author.meetup_name %}
|
||||
<!-- Meetup -->
|
||||
<li class="navigation__item">
|
||||
<a href="https://www.meetup.com/{{ site.author.meetup_name }}" title="Meetup {{ site.author.meetup_name }}" target="_blank">
|
||||
<!--<div style="font-size: 1.4rem;"><i class="fab fa-meetup fa-lg"></i></div>-->
|
||||
<i class="fa-brands fa-meetup"></i>
|
||||
<span class="label">Meetup</span>
|
||||
</a>
|
||||
</li>
|
||||
{% endif %}
|
||||
|
||||
{% if site.author.email %}
|
||||
<!-- Email -->
|
||||
<li class="navigation__item">
|
||||
<a href="mailto:{{ site.author.email }}" title="Email {{ site.author.email }}" target="_blank">
|
||||
<!--<i class="icon icon-mail"></i>-->
|
||||
<i class="fa-solid fa-envelope"></i>
|
||||
<span class="label">Email</span>
|
||||
</a>
|
||||
</li>
|
||||
{% endif %}
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
<!--<nav class="cover-navigation cover-navigation--primary">-->
|
||||
<nav class="cover-navigation navigation--social">
|
||||
<ul class="navigation">
|
||||
<li class="navigation__item"><a href="https://blog.zuehlke.cloud" title="link to Blog"><i class="fa-solid fa-link"></i> Blog</a></li>
|
||||
<!--<li class="navigation__item"><a href="{{ site.baseurl }}/#" title="link to Tweets" class="panel-button"><i class="icon icon-social-twitter"></i> Tweets</a></li>-->
|
||||
<li class="navigation__item"><a href="{{ site.baseurl }}/#projects" title="List of Projects" class="panel-button projects-button"><i class="fa-solid fa-file-code"></i> Projects</a></li>
|
||||
<li class="navigation__item"><a href="{{ site.baseurl }}/#projects" title="List of Projects" class="panel-button projects-button"><i class="fa-solid fa-file-code"></i> Art</a></li>
|
||||
<li class="navigation__item"><a href="/gallery" title="List of Projects" class="panel-button projects-button"><i class="fa-solid fa-file-code"></i> arts™</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="panel-cover--overlay"></div>
|
||||
</div>
|
||||
</header>
|
||||
21
_layouts/default.html
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>{{ page.title }}</title>
|
||||
<link rel="stylesheet" href="{{ site.baseurl }}/css/main.css?{{ site.time | date: '%s%N' }}">
|
||||
{% include head.html %}
|
||||
</head>
|
||||
|
||||
<body>
|
||||
{% include header.html %}
|
||||
|
||||
<div class="content-wrapper">
|
||||
<div class="left-line"></div>
|
||||
<div class="content-wrapper__inner">
|
||||
{{ content }}
|
||||
</div>
|
||||
{% include footer.html %}
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
21
_projects/arts.md
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
---
|
||||
title: "Cats Project"
|
||||
layout: default
|
||||
---
|
||||
# 🚀 Project Nebula
|
||||
|
||||
Welcome to **Project Nebula**, a cosmic initiative to explore the outer edges of creativity.
|
||||
|
||||
## 🌌 Features
|
||||
|
||||
- 🌠 Star-mapped navigation
|
||||
- 🛰️ Real-time telemetry
|
||||
- 🧠 Bullshit-assisted decision engine
|
||||
|
||||
## 📦 Installation
|
||||
|
||||
```bash
|
||||
git clone https://github.com/yourusername/project-nebula.git
|
||||
cd project-nebula
|
||||
npm install
|
||||
```
|
||||
19
_projects/gallery.html
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
---
|
||||
layout: default
|
||||
slug: gallery
|
||||
---
|
||||
|
||||
<ul class="gallery-list">
|
||||
{% for item in site.data.gallery %}
|
||||
<li class="gallery-item">
|
||||
<a href="{{ item.image }}" data-lightbox="gallery">
|
||||
<img src="{{ item.image }}" alt="{{ item.title }}">
|
||||
</a>
|
||||
<div class="info">
|
||||
<h3>{{ item.title }}</h3>
|
||||
<p>{{ item.year }}</p>
|
||||
</div>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
|
||||
42
_sass/_gallery.scss
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
.gallery-list {
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.gallery-item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 1rem; /* space between image and text */
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
|
||||
.gallery-item img:hover {
|
||||
transform: scale(1.03);
|
||||
}
|
||||
|
||||
.gallery-item .info {
|
||||
flex: 1; /* text takes remaining width */
|
||||
}
|
||||
|
||||
.gallery-item .info h3 {
|
||||
margin: 0;
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
.gallery-item .info p {
|
||||
margin: 0.3rem 0 0;
|
||||
color: #666;
|
||||
}
|
||||
|
||||
.gallery-item img {
|
||||
max-width: 220px; /* never wider than 150px */
|
||||
width: 100%; /* scale down proportionally */
|
||||
height: auto; /* keep aspect ratio */
|
||||
border-radius: 8px;
|
||||
cursor: pointer;
|
||||
flex-shrink: 0; /* don’t let flexbox shrink it */
|
||||
transition: transform 0.2s ease;
|
||||
display: block; /* remove any inline gap issues */
|
||||
margin-right: 35px;
|
||||
}
|
||||
3432
_sass/animate.scss
vendored
Normal file
66
_sass/monokai.scss
Normal file
|
|
@ -0,0 +1,66 @@
|
|||
pre.highlight,
|
||||
.highlight pre { background-color: #272822; }
|
||||
.highlight .hll { background-color: #272822; }
|
||||
.highlight .c { color: #75715e } /* Comment */
|
||||
.highlight .err { color: #960050; background-color: #1e0010 } /* Error */
|
||||
.highlight .k { color: #66d9ef } /* Keyword */
|
||||
.highlight .l { color: #ae81ff } /* Literal */
|
||||
.highlight .n { color: #f8f8f2 } /* Name */
|
||||
.highlight .o { color: #f92672 } /* Operator */
|
||||
.highlight .p { color: #f8f8f2 } /* Punctuation */
|
||||
.highlight .cm { color: #75715e } /* Comment.Multiline */
|
||||
.highlight .cp { color: #75715e } /* Comment.Preproc */
|
||||
.highlight .c1 { color: #75715e } /* Comment.Single */
|
||||
.highlight .cs { color: #75715e } /* Comment.Special */
|
||||
.highlight .ge { font-style: italic } /* Generic.Emph */
|
||||
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
||||
.highlight .kc { color: #66d9ef } /* Keyword.Constant */
|
||||
.highlight .kd { color: #66d9ef } /* Keyword.Declaration */
|
||||
.highlight .kn { color: #f92672 } /* Keyword.Namespace */
|
||||
.highlight .kp { color: #66d9ef } /* Keyword.Pseudo */
|
||||
.highlight .kr { color: #66d9ef } /* Keyword.Reserved */
|
||||
.highlight .kt { color: #66d9ef } /* Keyword.Type */
|
||||
.highlight .ld { color: #e6db74 } /* Literal.Date */
|
||||
.highlight .m { color: #ae81ff } /* Literal.Number */
|
||||
.highlight .s { color: #e6db74 } /* Literal.String */
|
||||
.highlight .na { color: #a6e22e } /* Name.Attribute */
|
||||
.highlight .nb { color: #f8f8f2 } /* Name.Builtin */
|
||||
.highlight .nc { color: #a6e22e } /* Name.Class */
|
||||
.highlight .no { color: #66d9ef } /* Name.Constant */
|
||||
.highlight .nd { color: #a6e22e } /* Name.Decorator */
|
||||
.highlight .ni { color: #f8f8f2 } /* Name.Entity */
|
||||
.highlight .ne { color: #a6e22e } /* Name.Exception */
|
||||
.highlight .nf { color: #a6e22e } /* Name.Function */
|
||||
.highlight .nl { color: #f8f8f2 } /* Name.Label */
|
||||
.highlight .nn { color: #f8f8f2 } /* Name.Namespace */
|
||||
.highlight .nx { color: #a6e22e } /* Name.Other */
|
||||
.highlight .py { color: #f8f8f2 } /* Name.Property */
|
||||
.highlight .nt { color: #f92672 } /* Name.Tag */
|
||||
.highlight .nv { color: #f8f8f2 } /* Name.Variable */
|
||||
.highlight .ow { color: #f92672 } /* Operator.Word */
|
||||
.highlight .w { color: #f8f8f2 } /* Text.Whitespace */
|
||||
.highlight .mf { color: #ae81ff } /* Literal.Number.Float */
|
||||
.highlight .mh { color: #ae81ff } /* Literal.Number.Hex */
|
||||
.highlight .mi { color: #ae81ff } /* Literal.Number.Integer */
|
||||
.highlight .mo { color: #ae81ff } /* Literal.Number.Oct */
|
||||
.highlight .sb { color: #e6db74 } /* Literal.String.Backtick */
|
||||
.highlight .sc { color: #e6db74 } /* Literal.String.Char */
|
||||
.highlight .sd { color: #e6db74 } /* Literal.String.Doc */
|
||||
.highlight .s2 { color: #e6db74 } /* Literal.String.Double */
|
||||
.highlight .se { color: #ae81ff } /* Literal.String.Escape */
|
||||
.highlight .sh { color: #e6db74 } /* Literal.String.Heredoc */
|
||||
.highlight .si { color: #e6db74 } /* Literal.String.Interpol */
|
||||
.highlight .sx { color: #e6db74 } /* Literal.String.Other */
|
||||
.highlight .sr { color: #e6db74 } /* Literal.String.Regex */
|
||||
.highlight .s1 { color: #e6db74 } /* Literal.String.Single */
|
||||
.highlight .ss { color: #e6db74 } /* Literal.String.Symbol */
|
||||
.highlight .bp { color: #f8f8f2 } /* Name.Builtin.Pseudo */
|
||||
.highlight .vc { color: #f8f8f2 } /* Name.Variable.Class */
|
||||
.highlight .vg { color: #f8f8f2 } /* Name.Variable.Global */
|
||||
.highlight .vi { color: #f8f8f2 } /* Name.Variable.Instance */
|
||||
.highlight .il { color: #ae81ff } /* Literal.Number.Integer.Long */
|
||||
|
||||
.highlight .gh { } /* Generic Heading & Diff Header */
|
||||
.highlight .gu { color: #75715e; } /* Generic.Subheading & Diff Unified/Comment? */
|
||||
.highlight .gd { color: #f92672; } /* Generic.Deleted & Diff Deleted */
|
||||
.highlight .gi { color: #a6e22e; } /* Generic.Inserted & Diff Inserted */
|
||||
24
_sass/tables.scss
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
table {
|
||||
margin-bottom: 1.3em;
|
||||
thead {
|
||||
font-weight: bold;
|
||||
|
||||
th {
|
||||
text-align: left;
|
||||
border-bottom: 4px solid #888;
|
||||
font-weight: bold;
|
||||
padding: 12px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
}
|
||||
|
||||
tr {
|
||||
&:nth-child(even) td {
|
||||
background: #eee;
|
||||
}
|
||||
|
||||
td {
|
||||
padding: 12px;
|
||||
}
|
||||
}
|
||||
}
|
||||
235
_sass/timeline.scss
Normal file
|
|
@ -0,0 +1,235 @@
|
|||
|
||||
.timeline {
|
||||
position: relative;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
|
||||
.timeline:before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
left: 50%; /* place it in the horizontal center */
|
||||
transform: translateX(-50%); /* shift back by half its own width */
|
||||
width: 0; /* we don’t want width, just a border */
|
||||
border-left: 3px solid #ffffff3c;
|
||||
}
|
||||
|
||||
.timeline>li {
|
||||
position: relative;
|
||||
margin-bottom: 50px;
|
||||
min-height: 50px;
|
||||
|
||||
}
|
||||
|
||||
.timeline > li.timeline-inverted {
|
||||
display: flex;
|
||||
align-items: center; /* centers panel and image vertically */
|
||||
justify-content: flex-end; /* Left on X-axis */
|
||||
}
|
||||
|
||||
|
||||
.timeline>li:before,
|
||||
.timeline>li:after {
|
||||
content: " ";
|
||||
display: table;
|
||||
}
|
||||
|
||||
.timeline>li:after {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
|
||||
.timeline>li .timeline-panel {
|
||||
float: right;
|
||||
position: relative;
|
||||
width: 100%;
|
||||
padding: 0 20px 0 20px;
|
||||
text-align: left;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.timeline>li .timeline-panel:before {
|
||||
right: auto;
|
||||
left: -15px;
|
||||
border-right-width: 15px;
|
||||
border-left-width: 0;
|
||||
}
|
||||
|
||||
.timeline>li .timeline-panel:after {
|
||||
right: auto;
|
||||
left: -14px;
|
||||
border-right-width: 14px;
|
||||
border-left-width: 0;
|
||||
}
|
||||
|
||||
.timeline>li .timeline-image {
|
||||
visibility: hidden;
|
||||
z-index: 100;
|
||||
position: absolute;
|
||||
border: 1px solid #000000;
|
||||
border-radius: 100%;
|
||||
text-align: center;
|
||||
background-color: #fff;
|
||||
display: flex;
|
||||
box-shadow: 0 0 0 2px #eeeeee,
|
||||
}
|
||||
|
||||
.img-me {
|
||||
z-index: 100;
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
border-radius: 20%;
|
||||
text-align: center;
|
||||
background-color: #fff;
|
||||
margin: auto auto;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.timeline>li .timeline-image h4 {
|
||||
margin-top: 12px;
|
||||
font-size: 10px;
|
||||
line-height: 14px;
|
||||
}
|
||||
|
||||
.img-me h4 {
|
||||
margin-top: 12px;
|
||||
font-size: 10px;
|
||||
line-height: 14px;
|
||||
}
|
||||
|
||||
.timeline>li.timeline-inverted>.timeline-panel {
|
||||
float: right;
|
||||
padding: 0 20px 0 20px;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.timeline>li.timeline-inverted>.timeline-panel:before {
|
||||
right: auto;
|
||||
left: -15px;
|
||||
border-right-width: 15px;
|
||||
border-left-width: 0;
|
||||
}
|
||||
|
||||
.timeline>li.timeline-inverted>.timeline-panel:after {
|
||||
right: auto;
|
||||
left: -14px;
|
||||
border-right-width: 14px;
|
||||
border-left-width: 0;
|
||||
}
|
||||
|
||||
.timeline>li:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.timeline .timeline-heading h4 {
|
||||
margin-top: 0;
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
.timeline .timeline-heading h4.subheading {
|
||||
text-transform: none;
|
||||
}
|
||||
|
||||
.timeline .timeline-body>p,
|
||||
.timeline .timeline-body>ul {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
@media(min-width:768px) {
|
||||
.timeline:before {
|
||||
left: 10%;
|
||||
width: 4px;
|
||||
}
|
||||
|
||||
.timeline>li {
|
||||
margin-bottom: 100px;
|
||||
min-height: 100px;
|
||||
}
|
||||
|
||||
.timeline>li .timeline-panel {
|
||||
float: left;
|
||||
width: 60%;
|
||||
padding: 0 20px 20px 30px;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.timeline>li .timeline-image {
|
||||
visibility: visible;
|
||||
left: 9%;
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
margin-left: -50px;
|
||||
}
|
||||
|
||||
.img-me {
|
||||
//left: 50%;
|
||||
width: auto;
|
||||
height: auto;
|
||||
max-width: 86px;
|
||||
max-height: 86px;
|
||||
}
|
||||
|
||||
.timeline>li .timeline-image h4 {
|
||||
margin-top: 16px;
|
||||
font-size: 13px;
|
||||
line-height: 18px;
|
||||
}
|
||||
|
||||
.img-me h4 {
|
||||
margin-top: 16px;
|
||||
font-size: 13px;
|
||||
line-height: 18px;
|
||||
}
|
||||
|
||||
.timeline>li.timeline-inverted>.timeline-panel {
|
||||
float: right;
|
||||
padding: 0 30px 20px 20px;
|
||||
text-align: left;
|
||||
}
|
||||
}
|
||||
|
||||
@media(min-width:992px) {
|
||||
.timeline>li {
|
||||
min-height: 150px;
|
||||
}
|
||||
|
||||
.timeline>li .timeline-panel {
|
||||
float: left;
|
||||
width: 60%;
|
||||
padding: 0 20px 20px;
|
||||
}
|
||||
|
||||
.timeline>li .timeline-image {
|
||||
visibility: visible;
|
||||
width: 150px;
|
||||
height: 150px;
|
||||
margin-left: -75px;
|
||||
}
|
||||
|
||||
.img-me {
|
||||
max-width:120px;
|
||||
max-height:120px;
|
||||
width: auto;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.timeline>li .timeline-image h4 {
|
||||
margin-top: 30px;
|
||||
font-size: 18px;
|
||||
line-height: 26px;
|
||||
}
|
||||
|
||||
.img-me h4 {
|
||||
margin-top: 30px;
|
||||
font-size: 18px;
|
||||
line-height: 26px;
|
||||
}
|
||||
|
||||
.timeline>li.timeline-inverted>.timeline-panel {
|
||||
padding: 0 20px 20px;
|
||||
}
|
||||
}
|
||||
|
||||
826
_sass/uno.scss
Normal file
|
|
@ -0,0 +1,826 @@
|
|||
@use "animate";
|
||||
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
font-size: 100%;
|
||||
font: inherit;
|
||||
vertical-align: baseline; }
|
||||
|
||||
/* HTML5 display-role reset for older browsers */
|
||||
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
|
||||
display: block; }
|
||||
|
||||
body {
|
||||
line-height: 1; }
|
||||
|
||||
ol, ul {
|
||||
list-style: none; }
|
||||
|
||||
blockquote, q {
|
||||
quotes: none; }
|
||||
|
||||
blockquote:before, blockquote:after {
|
||||
content: '';
|
||||
content: none; }
|
||||
|
||||
q:before, q:after {
|
||||
content: '';
|
||||
content: none; }
|
||||
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0; }
|
||||
|
||||
body {
|
||||
width: 100%;
|
||||
*zoom: 1; }
|
||||
body:before, body:after {
|
||||
content: "";
|
||||
display: table; }
|
||||
body:after {
|
||||
clear: both; }
|
||||
|
||||
html, body {
|
||||
height: 100%;
|
||||
background-color: #151515;}
|
||||
|
||||
html {
|
||||
height: 100%;
|
||||
max-height: 100%; }
|
||||
|
||||
body {
|
||||
font-family: "Raleway", sans-serif;
|
||||
font-size: 1em;
|
||||
color: #d8d8d8; }
|
||||
|
||||
::selection {
|
||||
background: #fae3df; }
|
||||
|
||||
::-moz-selection {
|
||||
background: #fae3df; }
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
color: #eeeeee; } //text color
|
||||
a:hover {
|
||||
color: #1c7fb9; //hover color
|
||||
-o-transition: .5s;
|
||||
-ms-transition: .5s;
|
||||
-moz-transition: .5s;
|
||||
-webkit-transition: .5s; }
|
||||
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h5 {
|
||||
margin-top: .8em;
|
||||
margin-bottom: .4em;
|
||||
font-family: "Roboto Slab", serif;
|
||||
font-weight: lighter;
|
||||
color: #e1e1e1;
|
||||
-webkit-font-smoothing: antialiased; }
|
||||
|
||||
h1 {
|
||||
margin-top: 0;
|
||||
font-size: 3.2em;
|
||||
line-height: 1.2em;
|
||||
letter-spacing: .05em; }
|
||||
|
||||
h2 {
|
||||
font-size: 2.2em; }
|
||||
|
||||
h3 {
|
||||
font-size: 1.8em; }
|
||||
|
||||
h4 {
|
||||
font-size: 1.4em; }
|
||||
|
||||
h4 {
|
||||
font-size: 1.2em; }
|
||||
|
||||
h5 {
|
||||
font-size: 1em; }
|
||||
|
||||
p {
|
||||
margin-bottom: 1.3em;
|
||||
line-height: 1.7em; }
|
||||
|
||||
strong {
|
||||
font-weight: bold; }
|
||||
|
||||
em {
|
||||
font-style: italic; }
|
||||
|
||||
blockquote {
|
||||
margin: 1em 0;
|
||||
padding: 2em 0;
|
||||
background: #f8f8f8;
|
||||
border: 1px solid #eeeeee;
|
||||
border-radius: 3px;
|
||||
font-family: "Roboto Slab", serif;
|
||||
font-weight: lighter;
|
||||
font-style: italic;
|
||||
font-size: 1.3em;
|
||||
text-align: center; }
|
||||
blockquote p:last-child {
|
||||
margin-bottom: 0; }
|
||||
|
||||
ol, ul {
|
||||
margin: 0 0 1.3em 2.5em; }
|
||||
ol li, ul li {
|
||||
margin: 0 0 .2em 0;
|
||||
line-height: 1.6em; }
|
||||
ol ol, ol ul, ul ol, ul ul {
|
||||
margin: .1em 0 .2em 2em; }
|
||||
|
||||
ol {
|
||||
list-style-type: decimal; }
|
||||
|
||||
ul {
|
||||
list-style-type: disc; }
|
||||
|
||||
code {
|
||||
padding: .1em .4em;
|
||||
background: #e8f2fb;
|
||||
border: 1px solid #c9e1f6;
|
||||
border-radius: 3px;
|
||||
font-family: Consolas, Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace, serif;
|
||||
font-size: .85em; }
|
||||
|
||||
pre {
|
||||
margin-bottom: 1.3em;
|
||||
/* padding: 1em 2.5%;
|
||||
background: #e8f2fb;
|
||||
border: 1px solid #c9e1f6; */
|
||||
border-radius: 3px;
|
||||
font-family: Consolas, Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace, serif;
|
||||
font-size: .9em;
|
||||
font-weight: normal;
|
||||
line-height: 1.3em; }
|
||||
pre code {
|
||||
padding: 0;
|
||||
background: none;
|
||||
border: none; }
|
||||
|
||||
.date,
|
||||
.time,
|
||||
.author,
|
||||
.tags {
|
||||
font-size: .8em;
|
||||
color: #c7c7c7; }
|
||||
.date a,
|
||||
.time a,
|
||||
.author a,
|
||||
.tags a {
|
||||
color: #666666; }
|
||||
.date a:hover,
|
||||
.time a:hover,
|
||||
.author a:hover,
|
||||
.tags a:hover {
|
||||
color: #b9301c; }
|
||||
|
||||
|
||||
.excerpt {
|
||||
margin: 0;
|
||||
font-size: .9em;
|
||||
color: #999999; }
|
||||
|
||||
.intro {
|
||||
font-family: "Roboto Slab", serif;
|
||||
font-size: 1.2em;
|
||||
font-weight: lighter;
|
||||
color: #999999; }
|
||||
|
||||
.block-heading {
|
||||
display: inline;
|
||||
float: left;
|
||||
width: 940px;
|
||||
margin: 0 10px;
|
||||
position: relative;
|
||||
bottom: -15px;
|
||||
font-size: .8em;
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 1px; }
|
||||
|
||||
.label {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
padding: 8px 18px 9px 18px;
|
||||
background: #e25440;
|
||||
border-radius: 3px;
|
||||
text-align: center;
|
||||
color: #FFF; }
|
||||
|
||||
.container {
|
||||
position: relative;
|
||||
z-index: 500;
|
||||
width: 940px;
|
||||
margin: 0 auto; }
|
||||
|
||||
.content-wrapper {
|
||||
z-index: 800;
|
||||
width: 60%;
|
||||
max-width: 800px;
|
||||
margin-left: 40%; }
|
||||
|
||||
.content-wrapper__inner {
|
||||
margin: 0 10%;
|
||||
padding: 50px 0; }
|
||||
|
||||
.content-wrapper {
|
||||
display: flex;
|
||||
align-items: stretch; /* ensures the line spans full height */
|
||||
}
|
||||
|
||||
.left-line {
|
||||
width: 3px; /* thickness of the line */
|
||||
background-color: #454545; /* color of the line */
|
||||
}
|
||||
|
||||
.content-wrapper__inner {
|
||||
flex: 1; /* take remaining space */
|
||||
/* no padding needed unless you want spacing inside */
|
||||
}
|
||||
|
||||
.footer {
|
||||
display: block;
|
||||
padding: 2em 0 0 0;
|
||||
border-top: 2px solid #dddddd;
|
||||
font-size: .7em;
|
||||
color: #b3b3b3; }
|
||||
|
||||
.footer__copyright {
|
||||
display: block;
|
||||
margin-bottom: .7em; }
|
||||
.footer__copyright a {
|
||||
color: #a6a6a6;
|
||||
text-decoration: underline; }
|
||||
.footer__copyright a:hover {
|
||||
color: #b9301c; }
|
||||
|
||||
.avatar,
|
||||
.logo {
|
||||
border-radius: 50%;
|
||||
border: 3px solid #FFF;
|
||||
box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.3);
|
||||
height: 100px;}
|
||||
|
||||
|
||||
hr {
|
||||
border: none; }
|
||||
|
||||
.section-title__divider {
|
||||
width: 30%;
|
||||
margin: 2.2em 0 2.1em 0;
|
||||
border-top: 1px solid #dddddd; }
|
||||
|
||||
.post-comments {
|
||||
border-top: 1px solid #dddddd;
|
||||
padding: 60px 0; }
|
||||
|
||||
.post-meta {
|
||||
margin: 0 0 .4em 0;
|
||||
color: #c7c7c7; }
|
||||
|
||||
.post-meta__date {
|
||||
margin-right: .5em; }
|
||||
|
||||
.post-meta__tags {
|
||||
margin-left: .4em; }
|
||||
|
||||
.post-meta__author {
|
||||
margin-left: 1.5em; }
|
||||
|
||||
.post-meta__avatar {
|
||||
display: inline-block;
|
||||
width: 22px;
|
||||
height: 22px;
|
||||
margin: 0 .3em -.4em 0;
|
||||
border: none;
|
||||
box-shadow: none; }
|
||||
|
||||
.post img {
|
||||
max-width: 100%;
|
||||
margin: 0 auto;
|
||||
border-radius: 3px;
|
||||
text-align: center; }
|
||||
|
||||
.post pre {
|
||||
width: 95%; }
|
||||
|
||||
.post hr {
|
||||
display: block;
|
||||
width: 30%;
|
||||
margin: 2em 0;
|
||||
border-top: 1px solid #dddddd; }
|
||||
|
||||
.error-code {
|
||||
font-size: 6em; }
|
||||
|
||||
.panel {
|
||||
display: table;
|
||||
width: 100%;
|
||||
height: 100%; }
|
||||
|
||||
.panel__vertical {
|
||||
display: table-cell;
|
||||
vertical-align: middle; }
|
||||
|
||||
.panel-title {
|
||||
margin: 0 0 5px 0;
|
||||
font-size: 2.5em;
|
||||
color: #FFF; }
|
||||
|
||||
.panel-subtitle {
|
||||
font-family: "Roboto Slab", serif;
|
||||
font-size: 1.2em;
|
||||
font-weight: lighter;
|
||||
letter-spacing: 3px;
|
||||
color: #cccccc;
|
||||
-webkit-font-smoothing: antialiased; }
|
||||
|
||||
.panel-cover {
|
||||
display: block;
|
||||
position: fixed;
|
||||
z-index: 900;
|
||||
width: 100%;
|
||||
max-width: none;
|
||||
height: 100%;
|
||||
background: url(../images/background-cover.jpg) top left no-repeat #666666;
|
||||
background-size: cover; }
|
||||
|
||||
.panel-cover--collapsed {
|
||||
width: 40%;
|
||||
max-width: 530px; }
|
||||
|
||||
.panel-cover--overlay {
|
||||
display: block;
|
||||
position: absolute;
|
||||
z-index: 0;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
background-color: rgba(68, 68, 68, 0.6);
|
||||
background-image: -webkit-linear-gradient(-410deg, rgba(68, 68, 68, 0.6) 20%, rgba(0, 0, 0, 0.9));
|
||||
background-image: linear-gradient(140deg,rgba(68, 68, 68, 0.6) 20%, rgba(0, 0, 0, 0.9)); }
|
||||
|
||||
.panel-cover__logo {
|
||||
margin-bottom: .2em; }
|
||||
|
||||
.panel-cover__description {
|
||||
margin: 0 30px; }
|
||||
|
||||
.panel-cover__divider {
|
||||
width: 50%;
|
||||
margin: 20px auto;
|
||||
border-top: 2px solid rgba(255, 255, 255, 0.146); }
|
||||
|
||||
.panel-cover__divider--secondary {
|
||||
width: 15%; }
|
||||
|
||||
.panel-main {
|
||||
display: table;
|
||||
width: 100%;
|
||||
height: 100%; }
|
||||
|
||||
.no-js .panel-main {
|
||||
width: 40%;
|
||||
max-width: 530px; }
|
||||
|
||||
.panel-main__inner {
|
||||
display: table-cell;
|
||||
vertical-align: middle;
|
||||
position: relative;
|
||||
z-index: 800;
|
||||
padding: 0 60px; }
|
||||
|
||||
.panel-main__content {
|
||||
max-width: 620px;
|
||||
margin: 0 auto; }
|
||||
|
||||
.panel-main__content--fixed {
|
||||
width: 480px;
|
||||
transition: width 1s;
|
||||
-webkit-transition: width 1s;
|
||||
/* Safari */ }
|
||||
|
||||
.panel-inverted {
|
||||
font-weight: 100;
|
||||
text-align: center;
|
||||
color: #FFF;
|
||||
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4); }
|
||||
.panel-inverted a {
|
||||
color: #FFF; }
|
||||
|
||||
.cover-navigation {
|
||||
margin-top: 10px; }
|
||||
|
||||
.cover-navigation--social {
|
||||
margin-right: 30px; }
|
||||
|
||||
.cover-green {
|
||||
background-color: rgba(21, 111, 120, 0.6);
|
||||
background-image: -webkit-linear-gradient(-410deg, rgba(21, 111, 120, 0.6) 20%, rgba(6, 31, 33, 0.8));
|
||||
background-image: linear-gradient(140deg,rgba(21, 111, 120, 0.6) 20%, rgba(6, 31, 33, 0.8)); }
|
||||
|
||||
.cover-purple {
|
||||
background-color: rgba(73, 50, 82, 0.6);
|
||||
background-image: -webkit-linear-gradient(-410deg, rgba(73, 50, 82, 0.6) 20%, rgba(17, 11, 19, 0.8));
|
||||
background-image: linear-gradient(140deg,rgba(73, 50, 82, 0.6) 20%, rgba(17, 11, 19, 0.8)); }
|
||||
|
||||
.cover-red {
|
||||
background-color: rgba(119, 31, 18, 0.6);
|
||||
background-image: -webkit-linear-gradient(-410deg, rgba(119, 31, 18, 0.6) 20%, rgba(30, 8, 5, 0.8));
|
||||
background-image: linear-gradient(140deg,rgba(119, 31, 18, 0.6) 20%, rgba(30, 8, 5, 0.8)); }
|
||||
|
||||
.cover-slate {
|
||||
background-color: rgba(61, 66, 96, 0.6);
|
||||
background-image: -webkit-linear-gradient(-410deg, rgba(61, 66, 96, 0.6) 20%, rgba(21, 23, 34, 0.8));
|
||||
background-image: linear-gradient(140deg,rgba(61, 66, 96, 0.6) 20%, rgba(21, 23, 34, 0.8)); }
|
||||
|
||||
.cover-disabled {
|
||||
background: none; }
|
||||
|
||||
.btn, .navigation__item a {
|
||||
display: inline-flex; /* enables flexbox */
|
||||
justify-content: center; /* horizontal centering */
|
||||
align-items: center;
|
||||
padding: 10px 10px;
|
||||
border: 2px solid #e25440;
|
||||
border-radius: 5px;
|
||||
font-size: .9em;
|
||||
font-weight: bold;
|
||||
letter-spacing: 1px;
|
||||
text-shadow: none;
|
||||
color: #e25440;
|
||||
-webkit-font-smoothing: antialiased; }
|
||||
.btn:hover, .navigation__item a:hover {
|
||||
color: #b9301c;
|
||||
border-color: #b9301c; }
|
||||
|
||||
.btn-secondary {
|
||||
border-color: #5ba4e5;
|
||||
color: #5ba4e5; }
|
||||
.btn-secondary:hover {
|
||||
color: #217fd2;
|
||||
border-color: #217fd2; }
|
||||
|
||||
.btn-tertiary {
|
||||
border-color: #999999;
|
||||
color: #999999; }
|
||||
.btn-tertiary:hover {
|
||||
color: #737373;
|
||||
border-color: #737373; }
|
||||
|
||||
.btn-large {
|
||||
padding: 10px 24px;
|
||||
font-size: 1.1em; }
|
||||
|
||||
.btn-small {
|
||||
padding: 8px 12px;
|
||||
font-size: .7em; }
|
||||
|
||||
.btn-mobile-menu {
|
||||
display: none;
|
||||
position: fixed;
|
||||
z-index: 9999;
|
||||
top: 0;
|
||||
right: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 42px;
|
||||
background: rgba(0, 0, 0, 0.40);
|
||||
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
|
||||
text-align: center; }
|
||||
|
||||
.btn-mobile-menu__icon,
|
||||
.btn-mobile-close__icon {
|
||||
position: relative;
|
||||
top: 3px;
|
||||
font-size: 36px;
|
||||
color: #FFF; }
|
||||
|
||||
nav {
|
||||
display: inline-block;
|
||||
position: relative; }
|
||||
|
||||
.navigation {
|
||||
justify-content: center;
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
margin: 0;
|
||||
list-style-type: none; }
|
||||
|
||||
.navigation__item {
|
||||
display: inline-block;
|
||||
margin: 6px 6px 0 0;
|
||||
line-height: 1em; }
|
||||
.navigation__item a {
|
||||
display: block;
|
||||
position: relative;
|
||||
border-color: #FFF;
|
||||
color: #FFF;
|
||||
opacity: .8; }
|
||||
.navigation__item a:hover {
|
||||
color: #FFF;
|
||||
border-color: #FFF;
|
||||
opacity: 1; }
|
||||
|
||||
.navigation--social {
|
||||
margin-right: 1.5em; }
|
||||
.navigation--social a {
|
||||
padding: 8px 8px 8px 8px; }
|
||||
.navigation--social a .label {
|
||||
display: none; }
|
||||
.navigation--social a .icon {
|
||||
display: block;
|
||||
font-size: 1.7em; }
|
||||
|
||||
.pagination {
|
||||
display: block;
|
||||
margin: 0 0 4em 0; }
|
||||
|
||||
.pagination__page-number {
|
||||
margin: 0;
|
||||
font-size: .8em;
|
||||
color: #999999; }
|
||||
|
||||
.pagination__newer {
|
||||
margin-right: 1em; }
|
||||
|
||||
.pagination__older {
|
||||
margin-left: 1em; }
|
||||
|
||||
i {
|
||||
font-family: 'entypo';
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
font-size: 18px; }
|
||||
|
||||
.icon-social {
|
||||
font-family: 'entypo-social';
|
||||
font-size: 22px;
|
||||
display: block;
|
||||
position: relative; }
|
||||
|
||||
.post-list {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
text-align: left; }
|
||||
.post-list li {
|
||||
margin: 0 0 2.2em 0; }
|
||||
.post-list li:last-child hr {
|
||||
display: none; }
|
||||
|
||||
.post-list__post-title {
|
||||
margin-top: 0;
|
||||
margin-bottom: .2em;
|
||||
font-size: 1.5em;
|
||||
line-height: 1.3em; }
|
||||
.post-list__post-title a {
|
||||
color: #333333; }
|
||||
.post-list__post-title a:hover {
|
||||
color: #b9301c; }
|
||||
|
||||
.post-list__meta {
|
||||
display: block;
|
||||
margin: .7em 0 0 0;
|
||||
font-size: .9em;
|
||||
color: #c7c7c7; }
|
||||
|
||||
.post-list__meta--date {
|
||||
margin-right: .5em;
|
||||
color: #c7c7c7; }
|
||||
|
||||
.post-list__meta--tags {
|
||||
margin-left: .5em; }
|
||||
|
||||
.post-list__divider {
|
||||
width: 30%;
|
||||
margin: 2.2em 0 2.1em 0;
|
||||
border-top: 1px solid #dddddd; }
|
||||
|
||||
*:focus {
|
||||
outline: none; }
|
||||
|
||||
input[type="text"],
|
||||
input[type="password"],
|
||||
input[type="datetime"],
|
||||
input[type="datetime-local"],
|
||||
input[type="date"],
|
||||
input[type="month"],
|
||||
input[type="time"],
|
||||
input[type="week"],
|
||||
input[type="number"],
|
||||
input[type="email"],
|
||||
input[type="url"],
|
||||
input[type="search"],
|
||||
input[type="tel"] {
|
||||
width: 240px;
|
||||
padding: 1em 1em;
|
||||
background: #FFF;
|
||||
border: 1px solid #dddddd;
|
||||
border-radius: 3px;
|
||||
font-size: .9em;
|
||||
color: #666666; }
|
||||
input[type="text"]:focus,
|
||||
input[type="password"]:focus,
|
||||
input[type="datetime"]:focus,
|
||||
input[type="datetime-local"]:focus,
|
||||
input[type="date"]:focus,
|
||||
input[type="month"]:focus,
|
||||
input[type="time"]:focus,
|
||||
input[type="week"]:focus,
|
||||
input[type="number"]:focus,
|
||||
input[type="email"]:focus,
|
||||
input[type="url"]:focus,
|
||||
input[type="search"]:focus,
|
||||
input[type="tel"]:focus {
|
||||
border-color: #5ba4e5; }
|
||||
input[type="text"]::-webkit-input-placeholder,
|
||||
input[type="password"]::-webkit-input-placeholder,
|
||||
input[type="datetime"]::-webkit-input-placeholder,
|
||||
input[type="datetime-local"]::-webkit-input-placeholder,
|
||||
input[type="date"]::-webkit-input-placeholder,
|
||||
input[type="month"]::-webkit-input-placeholder,
|
||||
input[type="time"]::-webkit-input-placeholder,
|
||||
input[type="week"]::-webkit-input-placeholder,
|
||||
input[type="number"]::-webkit-input-placeholder,
|
||||
input[type="email"]::-webkit-input-placeholder,
|
||||
input[type="url"]::-webkit-input-placeholder,
|
||||
input[type="search"]::-webkit-input-placeholder,
|
||||
input[type="tel"]::-webkit-input-placeholder {
|
||||
color: #cccccc; }
|
||||
input[type="text"]::-moz-placeholder,
|
||||
input[type="password"]::-moz-placeholder,
|
||||
input[type="datetime"]::-moz-placeholder,
|
||||
input[type="datetime-local"]::-moz-placeholder,
|
||||
input[type="date"]::-moz-placeholder,
|
||||
input[type="month"]::-moz-placeholder,
|
||||
input[type="time"]::-moz-placeholder,
|
||||
input[type="week"]::-moz-placeholder,
|
||||
input[type="number"]::-moz-placeholder,
|
||||
input[type="email"]::-moz-placeholder,
|
||||
input[type="url"]::-moz-placeholder,
|
||||
input[type="search"]::-moz-placeholder,
|
||||
input[type="tel"]::-moz-placeholder {
|
||||
color: #cccccc; }
|
||||
input[type="text"]:-moz-placeholder,
|
||||
input[type="password"]:-moz-placeholder,
|
||||
input[type="datetime"]:-moz-placeholder,
|
||||
input[type="datetime-local"]:-moz-placeholder,
|
||||
input[type="date"]:-moz-placeholder,
|
||||
input[type="month"]:-moz-placeholder,
|
||||
input[type="time"]:-moz-placeholder,
|
||||
input[type="week"]:-moz-placeholder,
|
||||
input[type="number"]:-moz-placeholder,
|
||||
input[type="email"]:-moz-placeholder,
|
||||
input[type="url"]:-moz-placeholder,
|
||||
input[type="search"]:-moz-placeholder,
|
||||
input[type="tel"]:-moz-placeholder {
|
||||
color: #cccccc; }
|
||||
input[type="text"]:-ms-input-placeholder,
|
||||
input[type="password"]:-ms-input-placeholder,
|
||||
input[type="datetime"]:-ms-input-placeholder,
|
||||
input[type="datetime-local"]:-ms-input-placeholder,
|
||||
input[type="date"]:-ms-input-placeholder,
|
||||
input[type="month"]:-ms-input-placeholder,
|
||||
input[type="time"]:-ms-input-placeholder,
|
||||
input[type="week"]:-ms-input-placeholder,
|
||||
input[type="number"]:-ms-input-placeholder,
|
||||
input[type="email"]:-ms-input-placeholder,
|
||||
input[type="url"]:-ms-input-placeholder,
|
||||
input[type="search"]:-ms-input-placeholder,
|
||||
input[type="tel"]:-ms-input-placeholder {
|
||||
color: #cccccc; }
|
||||
|
||||
@media all and (min-width: 1300px) {
|
||||
.content-wrapper {
|
||||
margin-left: 530px; } }
|
||||
@media all and (max-width: 1100px) {
|
||||
.panel-cover__logo {
|
||||
width: 70px; }
|
||||
|
||||
.panel-title {
|
||||
font-size: 2em; }
|
||||
|
||||
.panel-subtitle {
|
||||
font-size: 1em; }
|
||||
|
||||
.panel-cover__description {
|
||||
margin: 0 10px;
|
||||
font-size: .9em; }
|
||||
|
||||
.navigation--social {
|
||||
margin-top: 5px;
|
||||
margin-left: 0; } }
|
||||
@media all and (max-width: 960px) {
|
||||
.btn-mobile-menu {
|
||||
display: block; }
|
||||
|
||||
.panel-main {
|
||||
display: table;
|
||||
position: relative; }
|
||||
|
||||
.panel-cover--collapsed {
|
||||
width: 100%;
|
||||
max-width: none; }
|
||||
|
||||
.panel-main__inner {
|
||||
display: table-cell;
|
||||
padding: 60px 10%; }
|
||||
|
||||
.panel-cover__description {
|
||||
display: block;
|
||||
max-width: 600px;
|
||||
margin: 0 auto; }
|
||||
|
||||
.panel-cover__divider--secondary {
|
||||
display: none; }
|
||||
|
||||
.panel-cover {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-position: center center; }
|
||||
.panel-cover.panel-cover--collapsed {
|
||||
display: block;
|
||||
position: relative;
|
||||
height: auto;
|
||||
padding: 0;
|
||||
background-position: center center; }
|
||||
.panel-cover.panel-cover--collapsed .panel-main__inner {
|
||||
display: block;
|
||||
padding: 70px 0 30px 0; }
|
||||
.panel-cover.panel-cover--collapsed .panel-cover__logo {
|
||||
width: 60px;
|
||||
border-width: 2px; }
|
||||
.panel-cover.panel-cover--collapsed .panel-cover__description {
|
||||
display: none; }
|
||||
.panel-cover.panel-cover--collapsed .panel-cover__divider {
|
||||
display: none;
|
||||
margin: 1em auto; }
|
||||
|
||||
.navigation-wrapper {
|
||||
display: none;
|
||||
position: fixed;
|
||||
top: 42px;
|
||||
right: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
background: rgba(51, 51, 51, 0.98);
|
||||
border-bottom: 1px solid rgba(255, 255, 255, 0.15); }
|
||||
.navigation-wrapper.visible {
|
||||
display: block; }
|
||||
|
||||
.cover-navigation {
|
||||
display: block;
|
||||
position: relative;
|
||||
float: left;
|
||||
clear: left;
|
||||
width: 100%; }
|
||||
.cover-navigation .navigation {
|
||||
display: block;
|
||||
width: 100%; }
|
||||
.cover-navigation .navigation li {
|
||||
width: 80%;
|
||||
margin-bottom: .4em; }
|
||||
.cover-navigation.navigation--social {
|
||||
padding-top: 5px; }
|
||||
.cover-navigation.navigation--social .navigation li {
|
||||
display: inline-block;
|
||||
width: 25.8%; }
|
||||
|
||||
.content-wrapper {
|
||||
width: 80%;
|
||||
max-width: none;
|
||||
margin: 0 auto; }
|
||||
|
||||
.content-wrapper__inner {
|
||||
margin-right: 0;
|
||||
margin-left: 0; }
|
||||
|
||||
.navigation__item {
|
||||
width: 100%;
|
||||
margin: 0 0 .4em 0; } }
|
||||
|
||||
@media all and (max-width: 340px) {
|
||||
.panel-main__inner {
|
||||
padding: 0 5%; }
|
||||
|
||||
.panel-title {
|
||||
margin-bottom: .1em;
|
||||
font-size: 1.5em; }
|
||||
|
||||
.panel-subtitle {
|
||||
font-size: .9em; }
|
||||
|
||||
.btn, .navigation__item a {
|
||||
display: block;
|
||||
margin-bottom: .4em; } }
|
||||
21
_site/LICENSE
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
MIT License
|
||||
|
||||
Copyright (c) 2020 Thomas Zühlke
|
||||
|
||||
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.
|
||||
195
_site/arts/index.html
Normal file
|
|
@ -0,0 +1,195 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Cats Project</title>
|
||||
<link rel="stylesheet" href="/css/main.css?1756663165565255400">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width initial-scale=1" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
|
||||
|
||||
<title>Cats Project</title>
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
||||
<meta name="description" content="🚀 Project Nebula
|
||||
">
|
||||
<meta name="author" content="Simeon Wallrath">
|
||||
<meta name="HandheldFriendly" content="True">
|
||||
<meta name="MobileOptimized" content="320">
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
||||
|
||||
<meta name="twitter:card" content="summary">
|
||||
<meta name="twitter:title" content="Cats Project">
|
||||
<meta name="twitter:description" content="🚀 Project Nebula
|
||||
">
|
||||
|
||||
<meta name="twitter:image" content="/images/favicons/favicon-194x194.png" />
|
||||
|
||||
<meta property="og:type" content="article">
|
||||
<meta property="og:title" content="Cats Project">
|
||||
<meta property="og:description" content="🚀 Project Nebula
|
||||
">
|
||||
<meta property="og:image" content="/images/favicons/favicon-194x194.png" />
|
||||
|
||||
<link rel="apple-touch-icon" sizes="57x57" href="/images/favicons/apple-touch-icon-57x57.png">
|
||||
<link rel="apple-touch-icon" sizes="60x60" href="/images/favicons/apple-touch-icon-60x60.png">
|
||||
<link rel="apple-touch-icon" sizes="72x72" href="/images/favicons/apple-touch-icon-72x72.png">
|
||||
<link rel="apple-touch-icon" sizes="76x76" href="/images/favicons/apple-touch-icon-76x76.png">
|
||||
<link rel="apple-touch-icon" sizes="114x114" href="/images/favicons/apple-touch-icon-114x114.png">
|
||||
<link rel="apple-touch-icon" sizes="120x120" href="/images/favicons/apple-touch-icon-120x120.png">
|
||||
<link rel="apple-touch-icon" sizes="144x144" href="/images/favicons/apple-touch-icon-144x144.png">
|
||||
<link rel="apple-touch-icon" sizes="152x152" href="/images/favicons/apple-touch-icon-152x152.png">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/images/favicons/apple-touch-icon-180x180.png">
|
||||
<link rel="icon" type="image/png" href="/images/favicons/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="/images/favicons/favicon-194x194.png" sizes="194x194">
|
||||
<link rel="icon" type="image/png" href="/images/favicons/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/png" href="/images/favicons/android-chrome-192x192.png" sizes="192x192">
|
||||
<link rel="icon" type="image/png" href="/images/favicons/favicon-16x16.png" sizes="16x16">
|
||||
<link rel="manifest" href="/images/favicons/manifest.json">
|
||||
<link rel="shortcut icon" href="/images/favicons/favicon.ico">
|
||||
<meta name="msapplication-TileColor" content="#ffc40d">
|
||||
<meta name="msapplication-TileImage" content="/images/favicons/mstile-144x144.png">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
|
||||
<link rel="stylesheet" href="/css/main.css?1756663165565255400">
|
||||
<link rel="canonical" href="http://localhost:4000/arts/">
|
||||
<link rel="alternate" type="application/rss+xml" title="Simeon "Waldo" Wallrath" href="/feed.xml">
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<span class="mobile btn-mobile-menu">
|
||||
<i class="fas fa-bars btn-mobile-menu__icon"></i>
|
||||
<i class="far fa-times-circle btn-mobile-close__icon hidden"></i>
|
||||
</span>
|
||||
|
||||
<header class="panel-cover" style="background-image: url(/images/bk1.jpg)">
|
||||
<div class="panel-main">
|
||||
|
||||
<div class="panel-main__inner panel-inverted">
|
||||
<div class="panel-main__content">
|
||||
<a href="/" title="link to home of Simeon "Waldo" Wallrath">
|
||||
<div class="user-images">
|
||||
<img src="/images/Pic_01.jpg" class="user-image" alt="My Profile Photo">
|
||||
<div class="user-divider"></div>
|
||||
<img src="/images/Pic_02.png" class="user-image" alt="Second Profile Photo">
|
||||
</div>
|
||||
<h1 class="panel-cover__title panel-title">Simeon "Waldo" Wallrath</h1>
|
||||
</a>
|
||||
<hr class="panel-cover__divider">
|
||||
<p class="panel-cover__description">
|
||||
PhD-Student in Chemistry Didactics, 3D-Artist, Musician, Game Developer
|
||||
</p>
|
||||
<hr class="panel-cover__divider panel-cover__divider--secondary">
|
||||
</div>
|
||||
|
||||
<div class="navigation-wrapper">
|
||||
|
||||
<nav class="cover-navigation navigation--social">
|
||||
<ul class="navigation">
|
||||
|
||||
<!-- https://mastodon.social/@tzuehlke@mstdn.social -->
|
||||
|
||||
<!-- Mastodon -->
|
||||
<li class="navigation__item">
|
||||
<a href="https://mastodon.social/@waldo@chaos.social" title="@waldo@chaos.social on Mastodon" target="_blank">
|
||||
<i class="fa-brands fa-mastodon"></i>
|
||||
<span class="label">Mastodon</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- GitHub -->
|
||||
<li class="navigation__item">
|
||||
<a href="https://www.github.com/waldehyd" title="waldehyd on GitHub" target="_blank">
|
||||
<!--<i class="icon icon-social-github"></i>-->
|
||||
<i class="fa-brands fa-github"></i>
|
||||
<span class="label">GitHub</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- Email -->
|
||||
<li class="navigation__item">
|
||||
<a href="mailto:waldo@waldo.works" title="Email waldo@waldo.works" target="_blank">
|
||||
<!--<i class="icon icon-mail"></i>-->
|
||||
<i class="fa-solid fa-envelope"></i>
|
||||
<span class="label">Email</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
<!--<nav class="cover-navigation cover-navigation--primary">-->
|
||||
<nav class="cover-navigation navigation--social">
|
||||
<ul class="navigation">
|
||||
<li class="navigation__item"><a href="https://blog.zuehlke.cloud" title="link to Blog"><i class="fa-solid fa-link"></i> Blog</a></li>
|
||||
<!--<li class="navigation__item"><a href="/#" title="link to Tweets" class="panel-button"><i class="icon icon-social-twitter"></i> Tweets</a></li>-->
|
||||
<li class="navigation__item"><a href="/#projects" title="List of Projects" class="panel-button projects-button"><i class="fa-solid fa-file-code"></i> Projects</a></li>
|
||||
<li class="navigation__item"><a href="/#projects" title="List of Projects" class="panel-button projects-button"><i class="fa-solid fa-file-code"></i> Art</a></li>
|
||||
<li class="navigation__item"><a href="/gallery" title="List of Projects" class="panel-button projects-button"><i class="fa-solid fa-file-code"></i> arts™</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="panel-cover--overlay"></div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
|
||||
<div class="content-wrapper">
|
||||
<div class="left-line"></div>
|
||||
<div class="content-wrapper__inner">
|
||||
<h1 id="-project-nebula">🚀 Project Nebula</h1>
|
||||
|
||||
<p>Welcome to <strong>Project Nebula</strong>, a cosmic initiative to explore the outer edges of creativity.</p>
|
||||
|
||||
<h2 id="-features">🌌 Features</h2>
|
||||
|
||||
<ul>
|
||||
<li>🌠 Star-mapped navigation</li>
|
||||
<li>🛰️ Real-time telemetry</li>
|
||||
<li>🧠 Bullshit-assisted decision engine</li>
|
||||
</ul>
|
||||
|
||||
<h2 id="-installation">📦 Installation</h2>
|
||||
|
||||
<div class="language-bash highlighter-rouge"><div class="highlight"><pre class="highlight"><code>git clone https://github.com/yourusername/project-nebula.git
|
||||
<span class="nb">cd </span>project-nebula
|
||||
npm <span class="nb">install</span>
|
||||
</code></pre></div></div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
||||
<script type="text/javascript" src="/js/main.js?1756663165565255400"></script>
|
||||
<script type="text/javascript" src="/js/github_api.js?1756663165565255400"></script>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
1
_site/css/main.css
Normal file
1
_site/css/main.css.map
Normal file
304
_site/gallery/index.html
Normal file
|
|
@ -0,0 +1,304 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Gallery</title>
|
||||
<link rel="stylesheet" href="/css/main.css?1756663165565255400">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width initial-scale=1" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
|
||||
|
||||
<title>Gallery</title>
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
||||
<meta name="description" content="
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
First Artwork
|
||||
2023
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Second Artwork
|
||||
2024
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Third Artwork
|
||||
2021
|
||||
|
||||
|
||||
|
||||
">
|
||||
<meta name="author" content="Simeon Wallrath">
|
||||
<meta name="HandheldFriendly" content="True">
|
||||
<meta name="MobileOptimized" content="320">
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
||||
|
||||
<meta name="twitter:card" content="summary">
|
||||
<meta name="twitter:title" content="Gallery">
|
||||
<meta name="twitter:description" content="
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
First Artwork
|
||||
2023
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Second Artwork
|
||||
2024
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Third Artwork
|
||||
2021
|
||||
|
||||
|
||||
|
||||
">
|
||||
|
||||
<meta name="twitter:image" content="/images/favicons/favicon-194x194.png" />
|
||||
|
||||
<meta property="og:type" content="article">
|
||||
<meta property="og:title" content="Gallery">
|
||||
<meta property="og:description" content="
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
First Artwork
|
||||
2023
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Second Artwork
|
||||
2024
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Third Artwork
|
||||
2021
|
||||
|
||||
|
||||
|
||||
">
|
||||
<meta property="og:image" content="/images/favicons/favicon-194x194.png" />
|
||||
|
||||
<link rel="apple-touch-icon" sizes="57x57" href="/images/favicons/apple-touch-icon-57x57.png">
|
||||
<link rel="apple-touch-icon" sizes="60x60" href="/images/favicons/apple-touch-icon-60x60.png">
|
||||
<link rel="apple-touch-icon" sizes="72x72" href="/images/favicons/apple-touch-icon-72x72.png">
|
||||
<link rel="apple-touch-icon" sizes="76x76" href="/images/favicons/apple-touch-icon-76x76.png">
|
||||
<link rel="apple-touch-icon" sizes="114x114" href="/images/favicons/apple-touch-icon-114x114.png">
|
||||
<link rel="apple-touch-icon" sizes="120x120" href="/images/favicons/apple-touch-icon-120x120.png">
|
||||
<link rel="apple-touch-icon" sizes="144x144" href="/images/favicons/apple-touch-icon-144x144.png">
|
||||
<link rel="apple-touch-icon" sizes="152x152" href="/images/favicons/apple-touch-icon-152x152.png">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/images/favicons/apple-touch-icon-180x180.png">
|
||||
<link rel="icon" type="image/png" href="/images/favicons/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="/images/favicons/favicon-194x194.png" sizes="194x194">
|
||||
<link rel="icon" type="image/png" href="/images/favicons/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/png" href="/images/favicons/android-chrome-192x192.png" sizes="192x192">
|
||||
<link rel="icon" type="image/png" href="/images/favicons/favicon-16x16.png" sizes="16x16">
|
||||
<link rel="manifest" href="/images/favicons/manifest.json">
|
||||
<link rel="shortcut icon" href="/images/favicons/favicon.ico">
|
||||
<meta name="msapplication-TileColor" content="#ffc40d">
|
||||
<meta name="msapplication-TileImage" content="/images/favicons/mstile-144x144.png">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
|
||||
<link rel="stylesheet" href="/css/main.css?1756663165565255400">
|
||||
<link rel="canonical" href="http://localhost:4000/gallery/">
|
||||
<link rel="alternate" type="application/rss+xml" title="Simeon "Waldo" Wallrath" href="/feed.xml">
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<span class="mobile btn-mobile-menu">
|
||||
<i class="fas fa-bars btn-mobile-menu__icon"></i>
|
||||
<i class="far fa-times-circle btn-mobile-close__icon hidden"></i>
|
||||
</span>
|
||||
|
||||
<header class="panel-cover" style="background-image: url(/images/bk1.jpg)">
|
||||
<div class="panel-main">
|
||||
|
||||
<div class="panel-main__inner panel-inverted">
|
||||
<div class="panel-main__content">
|
||||
<a href="/" title="link to home of Simeon "Waldo" Wallrath">
|
||||
<div class="user-images">
|
||||
<img src="/images/Pic_01.jpg" class="user-image" alt="My Profile Photo">
|
||||
<div class="user-divider"></div>
|
||||
<img src="/images/Pic_02.png" class="user-image" alt="Second Profile Photo">
|
||||
</div>
|
||||
<h1 class="panel-cover__title panel-title">Simeon "Waldo" Wallrath</h1>
|
||||
</a>
|
||||
<hr class="panel-cover__divider">
|
||||
<p class="panel-cover__description">
|
||||
PhD-Student in Chemistry Didactics, 3D-Artist, Musician, Game Developer
|
||||
</p>
|
||||
<hr class="panel-cover__divider panel-cover__divider--secondary">
|
||||
</div>
|
||||
|
||||
<div class="navigation-wrapper">
|
||||
|
||||
<nav class="cover-navigation navigation--social">
|
||||
<ul class="navigation">
|
||||
|
||||
<!-- https://mastodon.social/@tzuehlke@mstdn.social -->
|
||||
|
||||
<!-- Mastodon -->
|
||||
<li class="navigation__item">
|
||||
<a href="https://mastodon.social/@waldo@chaos.social" title="@waldo@chaos.social on Mastodon" target="_blank">
|
||||
<i class="fa-brands fa-mastodon"></i>
|
||||
<span class="label">Mastodon</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- GitHub -->
|
||||
<li class="navigation__item">
|
||||
<a href="https://www.github.com/waldehyd" title="waldehyd on GitHub" target="_blank">
|
||||
<!--<i class="icon icon-social-github"></i>-->
|
||||
<i class="fa-brands fa-github"></i>
|
||||
<span class="label">GitHub</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- Email -->
|
||||
<li class="navigation__item">
|
||||
<a href="mailto:waldo@waldo.works" title="Email waldo@waldo.works" target="_blank">
|
||||
<!--<i class="icon icon-mail"></i>-->
|
||||
<i class="fa-solid fa-envelope"></i>
|
||||
<span class="label">Email</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
<!--<nav class="cover-navigation cover-navigation--primary">-->
|
||||
<nav class="cover-navigation navigation--social">
|
||||
<ul class="navigation">
|
||||
<li class="navigation__item"><a href="https://blog.zuehlke.cloud" title="link to Blog"><i class="fa-solid fa-link"></i> Blog</a></li>
|
||||
<!--<li class="navigation__item"><a href="/#" title="link to Tweets" class="panel-button"><i class="icon icon-social-twitter"></i> Tweets</a></li>-->
|
||||
<li class="navigation__item"><a href="/#projects" title="List of Projects" class="panel-button projects-button"><i class="fa-solid fa-file-code"></i> Projects</a></li>
|
||||
<li class="navigation__item"><a href="/#projects" title="List of Projects" class="panel-button projects-button"><i class="fa-solid fa-file-code"></i> Art</a></li>
|
||||
<li class="navigation__item"><a href="/gallery" title="List of Projects" class="panel-button projects-button"><i class="fa-solid fa-file-code"></i> arts™</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="panel-cover--overlay"></div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
|
||||
<div class="content-wrapper">
|
||||
<div class="left-line"></div>
|
||||
<div class="content-wrapper__inner">
|
||||
<ul class="gallery-list">
|
||||
|
||||
<li class="gallery-item">
|
||||
<a href="/images/Pic_01.jpg" data-lightbox="gallery">
|
||||
<img src="/images/Pic_01.jpg" alt="First Artwork">
|
||||
</a>
|
||||
<div class="info">
|
||||
<h3>First Artwork</h3>
|
||||
<p>2023</p>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="gallery-item">
|
||||
<a href="/images/Pic_01.jpg" data-lightbox="gallery">
|
||||
<img src="/images/Pic_01.jpg" alt="Second Artwork">
|
||||
</a>
|
||||
<div class="info">
|
||||
<h3>Second Artwork</h3>
|
||||
<p>2024</p>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="gallery-item">
|
||||
<a href="/images/Pic_01.jpg" data-lightbox="gallery">
|
||||
<img src="/images/Pic_01.jpg" alt="Third Artwork">
|
||||
</a>
|
||||
<div class="info">
|
||||
<h3>Third Artwork</h3>
|
||||
<p>2021</p>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
||||
<script type="text/javascript" src="/js/main.js?1756663165565255400"></script>
|
||||
<script type="text/javascript" src="/js/github_api.js?1756663165565255400"></script>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
BIN
_site/images/Pic_01.jpg
Normal file
|
After Width: | Height: | Size: 43 KiB |
BIN
_site/images/Pic_02.png
Normal file
|
After Width: | Height: | Size: 137 KiB |
BIN
_site/images/bk1.jpg
Normal file
|
After Width: | Height: | Size: 3 MiB |
BIN
_site/images/cover.jpg
Normal file
|
After Width: | Height: | Size: 202 KiB |
BIN
_site/images/favicons/android-chrome-144x144.png
Normal file
|
After Width: | Height: | Size: 4.8 KiB |
BIN
_site/images/favicons/android-chrome-192x192.png
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
_site/images/favicons/android-chrome-36x36.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
_site/images/favicons/android-chrome-48x48.png
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
_site/images/favicons/android-chrome-72x72.png
Normal file
|
After Width: | Height: | Size: 2.5 KiB |
BIN
_site/images/favicons/android-chrome-96x96.png
Normal file
|
After Width: | Height: | Size: 3.3 KiB |
BIN
_site/images/favicons/apple-touch-icon-114x114.png
Normal file
|
After Width: | Height: | Size: 4.1 KiB |
BIN
_site/images/favicons/apple-touch-icon-120x120.png
Normal file
|
After Width: | Height: | Size: 4.2 KiB |
BIN
_site/images/favicons/apple-touch-icon-144x144.png
Normal file
|
After Width: | Height: | Size: 5.1 KiB |
BIN
_site/images/favicons/apple-touch-icon-152x152.png
Normal file
|
After Width: | Height: | Size: 5.2 KiB |
BIN
_site/images/favicons/apple-touch-icon-180x180.png
Normal file
|
After Width: | Height: | Size: 13 KiB |
BIN
_site/images/favicons/apple-touch-icon-57x57.png
Normal file
|
After Width: | Height: | Size: 2 KiB |
BIN
_site/images/favicons/apple-touch-icon-60x60.png
Normal file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
_site/images/favicons/apple-touch-icon-72x72.png
Normal file
|
After Width: | Height: | Size: 2.6 KiB |
BIN
_site/images/favicons/apple-touch-icon-76x76.png
Normal file
|
After Width: | Height: | Size: 2.6 KiB |
BIN
_site/images/favicons/apple-touch-icon-precomposed.png
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
_site/images/favicons/apple-touch-icon.png
Normal file
|
After Width: | Height: | Size: 13 KiB |
12
_site/images/favicons/browserconfig.xml
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<browserconfig>
|
||||
<msapplication>
|
||||
<tile>
|
||||
<square70x70logo src="/images/favicons/mstile-70x70.png"/>
|
||||
<square150x150logo src="/images/favicons/mstile-150x150.png"/>
|
||||
<square310x310logo src="/images/favicons/mstile-310x310.png"/>
|
||||
<wide310x150logo src="/images/favicons/mstile-310x150.png"/>
|
||||
<TileColor>#00aba9</TileColor>
|
||||
</tile>
|
||||
</msapplication>
|
||||
</browserconfig>
|
||||
BIN
_site/images/favicons/favicon-16x16.png
Normal file
|
After Width: | Height: | Size: 980 B |
BIN
_site/images/favicons/favicon-194x194.png
Normal file
|
After Width: | Height: | Size: 21 KiB |
BIN
_site/images/favicons/favicon-32x32.png
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
BIN
_site/images/favicons/favicon-96x96.png
Normal file
|
After Width: | Height: | Size: 8.5 KiB |
BIN
_site/images/favicons/favicon.ico
Normal file
|
After Width: | Height: | Size: 15 KiB |
41
_site/images/favicons/manifest.json
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
{
|
||||
"name": "Jekyll-Uno",
|
||||
"icons": [
|
||||
{
|
||||
"src": "\/images\/favicons\/android-chrome-36x36.png",
|
||||
"sizes": "36x36",
|
||||
"type": "image\/png",
|
||||
"density": 0.75
|
||||
},
|
||||
{
|
||||
"src": "\/images\/favicons\/android-chrome-48x48.png",
|
||||
"sizes": "48x48",
|
||||
"type": "image\/png",
|
||||
"density": 1
|
||||
},
|
||||
{
|
||||
"src": "\/images\/favicons\/android-chrome-72x72.png",
|
||||
"sizes": "72x72",
|
||||
"type": "image\/png",
|
||||
"density": 1.5
|
||||
},
|
||||
{
|
||||
"src": "\/images\/favicons\/android-chrome-96x96.png",
|
||||
"sizes": "96x96",
|
||||
"type": "image\/png",
|
||||
"density": 2
|
||||
},
|
||||
{
|
||||
"src": "\/images\/favicons\/android-chrome-144x144.png",
|
||||
"sizes": "144x144",
|
||||
"type": "image\/png",
|
||||
"density": 3
|
||||
},
|
||||
{
|
||||
"src": "\/images\/favicons\/android-chrome-192x192.png",
|
||||
"sizes": "192x192",
|
||||
"type": "image\/png",
|
||||
"density": 4
|
||||
}
|
||||
]
|
||||
}
|
||||
BIN
_site/images/favicons/mstile-144x144.png
Normal file
|
After Width: | Height: | Size: 6.4 KiB |
BIN
_site/images/favicons/mstile-150x150.png
Normal file
|
After Width: | Height: | Size: 6.6 KiB |
BIN
_site/images/favicons/mstile-310x150.png
Normal file
|
After Width: | Height: | Size: 7 KiB |
BIN
_site/images/favicons/mstile-310x310.png
Normal file
|
After Width: | Height: | Size: 16 KiB |
BIN
_site/images/favicons/mstile-70x70.png
Normal file
|
After Width: | Height: | Size: 4.4 KiB |
57
_site/images/favicons/safari-pinned-tab.svg
Normal file
|
|
@ -0,0 +1,57 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
|
||||
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
|
||||
<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
|
||||
width="512.000000pt" height="512.000000pt" viewBox="0 0 512.000000 512.000000"
|
||||
preserveAspectRatio="xMidYMid meet">
|
||||
<metadata>
|
||||
Created by potrace 1.11, written by Peter Selinger 2001-2013
|
||||
</metadata>
|
||||
<g transform="translate(0.000000,512.000000) scale(0.100000,-0.100000)"
|
||||
fill="#000000" stroke="none">
|
||||
<path d="M2379 5116 c-2 -2 -35 -6 -74 -10 -222 -19 -495 -86 -705 -173 -101
|
||||
-41 -312 -146 -351 -173 -15 -11 -30 -20 -33 -20 -10 0 -217 -149 -276 -199
|
||||
-161 -135 -304 -283 -421 -436 -281 -368 -455 -810 -506 -1285 -15 -136 -8
|
||||
-503 11 -615 3 -16 8 -43 10 -60 16 -117 90 -399 126 -480 5 -11 21 -49 36
|
||||
-85 167 -413 463 -793 832 -1069 50 -38 89 -71 87 -73 -3 -3 1 -5 7 -5 7 0 51
|
||||
-24 97 -53 77 -47 310 -170 325 -170 3 0 25 -9 49 -19 108 -49 292 -106 437
|
||||
-135 111 -22 129 -25 195 -32 33 -4 64 -9 69 -12 5 -3 104 -6 220 -8 308 -3
|
||||
514 25 791 108 731 219 1337 773 1628 1488 63 155 133 403 151 530 3 25 8 54
|
||||
10 66 30 151 28 545 -3 749 -26 169 -90 415 -136 520 -7 17 -26 61 -41 99 -15
|
||||
38 -49 110 -76 160 -27 50 -56 107 -66 126 -9 19 -20 37 -23 40 -4 3 -21 30
|
||||
-40 60 -18 30 -36 57 -39 60 -3 3 -17 21 -30 40 -107 159 -312 375 -487 513
|
||||
-66 52 -289 207 -298 207 -2 0 -45 22 -95 49 -207 113 -521 224 -720 255 -19
|
||||
3 -44 8 -56 10 -12 2 -45 7 -74 11 -29 4 -62 9 -74 12 -24 5 -452 14 -457 9z
|
||||
m411 -814 c25 -6 59 -13 75 -16 79 -14 252 -85 325 -133 71 -47 86 -59 148
|
||||
-118 159 -149 232 -339 235 -608 1 -111 -7 -254 -17 -317 -17 -97 -17 -100 5
|
||||
-100 36 0 76 -28 95 -67 18 -39 25 -164 12 -228 -17 -82 -63 -175 -115 -231
|
||||
-20 -21 -67 -100 -105 -174 -206 -401 -424 -614 -702 -685 -118 -30 -282 -28
|
||||
-396 5 -270 77 -516 333 -700 725 -21 44 -56 99 -77 122 -140 149 -177 459
|
||||
-62 518 15 8 37 15 49 15 16 0 19 5 16 23 -25 121 -38 384 -25 502 13 107 40
|
||||
223 59 250 4 6 11 21 15 35 23 76 146 221 250 295 143 101 331 174 495 192 30
|
||||
3 57 7 59 9 9 8 320 -4 361 -14z m-878 -2957 c-6 -197 20 -286 152 -528 49
|
||||
-90 180 -266 257 -347 57 -59 147 -137 195 -170 l46 -31 72 54 c119 90 263
|
||||
247 351 382 21 33 41 62 44 65 19 17 119 223 147 305 26 74 28 92 29 238 0
|
||||
109 3 156 11 153 28 -11 246 -80 399 -126 285 -87 446 -153 572 -236 63 -41
|
||||
153 -126 153 -143 0 -13 -125 -142 -205 -211 -97 -84 -312 -240 -331 -240 -4
|
||||
0 -15 -6 -23 -14 -27 -24 -267 -141 -371 -181 -58 -22 -261 -85 -269 -83 -3 1
|
||||
-24 -4 -46 -10 -201 -56 -591 -76 -840 -41 -208 29 -367 68 -536 133 -137 52
|
||||
-349 154 -349 168 0 5 -3 7 -8 4 -10 -6 -232 141 -232 154 0 6 -4 9 -8 6 -5
|
||||
-3 -19 5 -33 17 -13 12 -62 54 -109 94 -102 87 -200 187 -200 206 0 17 77 88
|
||||
151 138 118 81 331 168 624 255 50 14 149 46 220 69 72 24 132 44 135 44 3 1
|
||||
3 -55 2 -124z m814 100 c19 -14 45 -41 60 -61 35 -45 29 -58 -70 -162 l-76
|
||||
-79 89 -220 88 -221 -32 -43 c-36 -51 -184 -189 -202 -189 -6 0 -13 -5 -15
|
||||
-12 -9 -26 -160 101 -227 190 l-38 52 88 222 89 222 -55 49 c-59 52 -115 126
|
||||
-115 151 0 9 25 40 56 71 l56 55 136 0 c129 0 137 -1 168 -25z"/>
|
||||
<path d="M2043 3668 c-119 -40 -232 -146 -298 -278 -27 -54 -28 -57 -21 -185
|
||||
3 -71 10 -148 15 -170 5 -22 12 -57 15 -77 3 -20 15 -77 25 -125 11 -48 19
|
||||
-89 17 -90 -1 -2 -13 23 -26 55 -30 73 -75 139 -100 147 -26 8 -65 -19 -80
|
||||
-56 -11 -26 -9 -111 3 -169 9 -42 63 -134 98 -167 21 -20 42 -46 45 -58 8 -23
|
||||
119 -249 154 -310 100 -179 231 -319 350 -377 105 -50 192 -70 319 -70 281 0
|
||||
471 116 634 385 18 31 36 54 39 51 3 -3 6 1 5 8 -1 7 34 85 78 173 53 109 94
|
||||
177 126 213 80 88 123 256 85 330 -46 89 -116 51 -176 -96 -21 -52 -25 -40 -9
|
||||
28 14 59 16 71 23 116 7 44 17 99 23 129 2 11 6 50 8 88 l5 67 -47 1 c-27 0
|
||||
-64 2 -83 4 -19 1 -67 6 -105 9 -92 7 -152 16 -285 42 -266 52 -482 162 -696
|
||||
355 -29 25 -59 46 -68 46 -9 0 -42 -9 -73 -19z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.7 KiB |
BIN
_site/images/tzuehlke copy.jpg
Normal file
|
After Width: | Height: | Size: 20 KiB |
271
_site/index.html
Normal file
|
|
@ -0,0 +1,271 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title></title>
|
||||
<link rel="stylesheet" href="/css/main.css?1756663165565255400">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width initial-scale=1" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
|
||||
<meta name="robots" content="noindex">
|
||||
|
||||
|
||||
<title>Simeon "Waldo" Wallrath</title>
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
||||
<meta name="description" content="Business Card Page">
|
||||
<meta name="author" content="Simeon Wallrath">
|
||||
<meta name="HandheldFriendly" content="True">
|
||||
<meta name="MobileOptimized" content="320">
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
||||
|
||||
<meta name="twitter:card" content="summary">
|
||||
<meta name="twitter:title" content="Simeon "Waldo" Wallrath">
|
||||
<meta name="twitter:description" content="Business Card Page">
|
||||
|
||||
<meta name="twitter:image" content="/images/favicons/favicon-194x194.png" />
|
||||
|
||||
<meta property="og:type" content="article">
|
||||
<meta property="og:title" content="Simeon "Waldo" Wallrath">
|
||||
<meta property="og:description" content="Business Card Page">
|
||||
<meta property="og:image" content="/images/favicons/favicon-194x194.png" />
|
||||
|
||||
<link rel="apple-touch-icon" sizes="57x57" href="/images/favicons/apple-touch-icon-57x57.png">
|
||||
<link rel="apple-touch-icon" sizes="60x60" href="/images/favicons/apple-touch-icon-60x60.png">
|
||||
<link rel="apple-touch-icon" sizes="72x72" href="/images/favicons/apple-touch-icon-72x72.png">
|
||||
<link rel="apple-touch-icon" sizes="76x76" href="/images/favicons/apple-touch-icon-76x76.png">
|
||||
<link rel="apple-touch-icon" sizes="114x114" href="/images/favicons/apple-touch-icon-114x114.png">
|
||||
<link rel="apple-touch-icon" sizes="120x120" href="/images/favicons/apple-touch-icon-120x120.png">
|
||||
<link rel="apple-touch-icon" sizes="144x144" href="/images/favicons/apple-touch-icon-144x144.png">
|
||||
<link rel="apple-touch-icon" sizes="152x152" href="/images/favicons/apple-touch-icon-152x152.png">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/images/favicons/apple-touch-icon-180x180.png">
|
||||
<link rel="icon" type="image/png" href="/images/favicons/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="/images/favicons/favicon-194x194.png" sizes="194x194">
|
||||
<link rel="icon" type="image/png" href="/images/favicons/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/png" href="/images/favicons/android-chrome-192x192.png" sizes="192x192">
|
||||
<link rel="icon" type="image/png" href="/images/favicons/favicon-16x16.png" sizes="16x16">
|
||||
<link rel="manifest" href="/images/favicons/manifest.json">
|
||||
<link rel="shortcut icon" href="/images/favicons/favicon.ico">
|
||||
<meta name="msapplication-TileColor" content="#ffc40d">
|
||||
<meta name="msapplication-TileImage" content="/images/favicons/mstile-144x144.png">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
|
||||
<link rel="stylesheet" href="/css/main.css?1756663165565255400">
|
||||
<link rel="canonical" href="http://localhost:4000/">
|
||||
<link rel="alternate" type="application/rss+xml" title="Simeon "Waldo" Wallrath" href="/feed.xml">
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<span class="mobile btn-mobile-menu">
|
||||
<i class="fas fa-bars btn-mobile-menu__icon"></i>
|
||||
<i class="far fa-times-circle btn-mobile-close__icon hidden"></i>
|
||||
</span>
|
||||
|
||||
<header class="panel-cover" style="background-image: url(/images/bk1.jpg)">
|
||||
<div class="panel-main">
|
||||
|
||||
<div class="panel-main__inner panel-inverted">
|
||||
<div class="panel-main__content">
|
||||
<a href="/" title="link to home of Simeon "Waldo" Wallrath">
|
||||
<div class="user-images">
|
||||
<img src="/images/Pic_01.jpg" class="user-image" alt="My Profile Photo">
|
||||
<div class="user-divider"></div>
|
||||
<img src="/images/Pic_02.png" class="user-image" alt="Second Profile Photo">
|
||||
</div>
|
||||
<h1 class="panel-cover__title panel-title">Simeon "Waldo" Wallrath</h1>
|
||||
</a>
|
||||
<hr class="panel-cover__divider">
|
||||
<p class="panel-cover__description">
|
||||
PhD-Student in Chemistry Didactics, 3D-Artist, Musician, Game Developer
|
||||
</p>
|
||||
<hr class="panel-cover__divider panel-cover__divider--secondary">
|
||||
</div>
|
||||
|
||||
<div class="navigation-wrapper">
|
||||
|
||||
<nav class="cover-navigation navigation--social">
|
||||
<ul class="navigation">
|
||||
|
||||
<!-- https://mastodon.social/@tzuehlke@mstdn.social -->
|
||||
|
||||
<!-- Mastodon -->
|
||||
<li class="navigation__item">
|
||||
<a href="https://mastodon.social/@waldo@chaos.social" title="@waldo@chaos.social on Mastodon" target="_blank">
|
||||
<i class="fa-brands fa-mastodon"></i>
|
||||
<span class="label">Mastodon</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- GitHub -->
|
||||
<li class="navigation__item">
|
||||
<a href="https://www.github.com/waldehyd" title="waldehyd on GitHub" target="_blank">
|
||||
<!--<i class="icon icon-social-github"></i>-->
|
||||
<i class="fa-brands fa-github"></i>
|
||||
<span class="label">GitHub</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- Email -->
|
||||
<li class="navigation__item">
|
||||
<a href="mailto:waldo@waldo.works" title="Email waldo@waldo.works" target="_blank">
|
||||
<!--<i class="icon icon-mail"></i>-->
|
||||
<i class="fa-solid fa-envelope"></i>
|
||||
<span class="label">Email</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
<!--<nav class="cover-navigation cover-navigation--primary">-->
|
||||
<nav class="cover-navigation navigation--social">
|
||||
<ul class="navigation">
|
||||
<li class="navigation__item"><a href="https://blog.zuehlke.cloud" title="link to Blog"><i class="fa-solid fa-link"></i> Blog</a></li>
|
||||
<!--<li class="navigation__item"><a href="/#" title="link to Tweets" class="panel-button"><i class="icon icon-social-twitter"></i> Tweets</a></li>-->
|
||||
<li class="navigation__item"><a href="/#projects" title="List of Projects" class="panel-button projects-button"><i class="fa-solid fa-file-code"></i> Projects</a></li>
|
||||
<li class="navigation__item"><a href="/#projects" title="List of Projects" class="panel-button projects-button"><i class="fa-solid fa-file-code"></i> Art</a></li>
|
||||
<li class="navigation__item"><a href="/gallery" title="List of Projects" class="panel-button projects-button"><i class="fa-solid fa-file-code"></i> arts™</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="panel-cover--overlay"></div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
|
||||
<div class="content-wrapper">
|
||||
<div class="left-line"></div>
|
||||
<div class="content-wrapper__inner">
|
||||
<ul class="timeline">
|
||||
|
||||
<li class="timeline-inverted">
|
||||
<div class="timeline-image">
|
||||
<a href="https://virtuos.world" target="_blank" style="display: flex; width: 100%; height: 100%; align-items: center; justify-content: center;">
|
||||
<img class="img-me" src="https://blog.zuehlke.cloud/wp-content/uploads/2024/04/AzureCostExportPAYG-Overview-945x293.png" alt="">
|
||||
</a>
|
||||
</div>
|
||||
<div class="timeline-panel">
|
||||
<div class="timeline-heading">
|
||||
<h4>
|
||||
<a href="https://virtuos.world" target="_blank">
|
||||
A repo with workflow, that downloads the current Pay-As-You-Go prices from Azure once a month and saves them in ~40MB files
|
||||
</a>
|
||||
</h4>
|
||||
</div>
|
||||
<div class="timeline-body">
|
||||
|
||||
<p>asdasd</p>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="timeline-inverted">
|
||||
<div class="timeline-image">
|
||||
<a href="https://virtuos.world" target="_blank" style="display: flex; width: 100%; height: 100%; align-items: center; justify-content: center;">
|
||||
<img class="img-me" src="https://blog.zuehlke.cloud/wp-content/uploads/2024/04/AzureCostExportPAYG-Overview-945x293.png" alt="">
|
||||
</a>
|
||||
</div>
|
||||
<div class="timeline-panel">
|
||||
<div class="timeline-heading">
|
||||
<h4>
|
||||
<a href="https://virtuos.world" target="_blank">
|
||||
A repo with workflow, that downloads the current Pay-As-You-Go prices from Azure once a month and saves them in ~40MB files
|
||||
</a>
|
||||
</h4>
|
||||
</div>
|
||||
<div class="timeline-body">
|
||||
|
||||
<p>asdasd</p>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="timeline-inverted">
|
||||
<div class="timeline-image">
|
||||
<a href="https://virtuos.world" target="_blank" style="display: flex; width: 100%; height: 100%; align-items: center; justify-content: center;">
|
||||
<img class="img-me" src="https://blog.zuehlke.cloud/wp-content/uploads/2024/04/AzureCostExportPAYG-Overview-945x293.png" alt="">
|
||||
</a>
|
||||
</div>
|
||||
<div class="timeline-panel">
|
||||
<div class="timeline-heading">
|
||||
<h4>
|
||||
<a href="https://virtuos.world" target="_blank">
|
||||
A repo with workflow, that downloads the current Pay-As-You-Go prices from Azure once a month and saves them in ~40MB files
|
||||
</a>
|
||||
</h4>
|
||||
</div>
|
||||
<div class="timeline-body">
|
||||
|
||||
<p>asdasd</p>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="timeline-inverted">
|
||||
<div class="timeline-image">
|
||||
<a href="https://virtuos.world" target="_blank" style="display: flex; width: 100%; height: 100%; align-items: center; justify-content: center;">
|
||||
<img class="img-me" src="https://blog.zuehlke.cloud/wp-content/uploads/2024/04/AzureCostExportPAYG-Overview-945x293.png" alt="">
|
||||
</a>
|
||||
</div>
|
||||
<div class="timeline-panel">
|
||||
<div class="timeline-heading">
|
||||
<h4>
|
||||
<a href="https://virtuos.world" target="_blank">
|
||||
A repo with workflow, that downloads the current Pay-As-You-Go prices from Azure once a month and saves them in ~40MB files
|
||||
</a>
|
||||
</h4>
|
||||
</div>
|
||||
<div class="timeline-body">
|
||||
|
||||
<p>asdasd</p>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
||||
<script type="text/javascript" src="/js/main.js?1756663165565255400"></script>
|
||||
<script type="text/javascript" src="/js/github_api.js?1756663165565255400"></script>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
32
_site/js/github_api.js
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
console.log("github_api loaded");
|
||||
$(document).ready(function() {
|
||||
users = []
|
||||
repos = []
|
||||
$(".ghbtn").each( function () {
|
||||
var user = $(this).attr('user');
|
||||
var repo = $(this).attr('repo');
|
||||
repos.push(user + '/' + repo);
|
||||
if (users.indexOf($(this).attr('user')) === -1) {
|
||||
users.push($(this).attr('user'))
|
||||
}
|
||||
})
|
||||
//console.log(1, repos)
|
||||
for (var i = 0; i < repos.length; i++) {
|
||||
//console.log("URL: "+"https://api.github.com/repos/" + repos[i]);
|
||||
$.ajax({
|
||||
type: "GET",
|
||||
url: "https://api.github.com/repos/" + repos[i],
|
||||
tryCount : 0,
|
||||
retryLimit : 3,
|
||||
async: true,
|
||||
dataType: "json",
|
||||
success: function (data) {
|
||||
x = data.name;
|
||||
//console.log("User/Repo: " + data.full_name + " Star: " + data.stargazers_count+ " Forks: "+data.forks_count + " Watchers: "+data.watchers_count);
|
||||
$("div[repo='" + x + "']").find("span[class='star']").html(" "+data.stargazers_count);
|
||||
$("div[repo='" + x + "']").find("span[class='fork']").html(" "+data.forks_count);
|
||||
$("div[repo='" + x + "']").find("span[class='watchers']").html(" "+data.watchers_count);
|
||||
$("div[repotext='" + x + "']").find("span[class='desc']").html(data.description);
|
||||
}
|
||||
})}
|
||||
});
|
||||
51
_site/js/main.js
Normal file
|
|
@ -0,0 +1,51 @@
|
|||
function toggleMobileMenu() {
|
||||
$('.navigation-wrapper').toggleClass('visible');
|
||||
$('.btn-mobile-menu__icon').toggleClass('hidden');
|
||||
$('.btn-mobile-close__icon').toggleClass('hidden');
|
||||
}
|
||||
|
||||
$(document).ready(function () {
|
||||
$('a.panel-button').click(function (e) {
|
||||
if ($('.content-wrapper').hasClass('showing')){
|
||||
$('.content-wrapper').removeClass('animated slideInRight')
|
||||
$('.panel-cover').removeClass('panel-cover--collapsed')
|
||||
$('.panel-cover').css('max-width', '100%')
|
||||
$('.panel-cover').animate({'width': '100%'}, 400, swing = 'swing', function () {})
|
||||
$('.content-wrapper').removeClass('showing')
|
||||
history.pushState("", document.title, window.location.pathname + window.location.search);
|
||||
//window.location.hash = '' // leaves #
|
||||
e.preventDefault();
|
||||
return;
|
||||
}
|
||||
|
||||
$('.panel-cover').addClass('panel-cover--collapsed');
|
||||
currentWidth = $('.panel-cover').width()
|
||||
if (currentWidth < 960) {
|
||||
$('.panel-cover').addClass('panel-cover--collapsed')
|
||||
$('.content-wrapper').addClass('animated slideInRight')
|
||||
} else {
|
||||
$('.panel-cover').css('max-width', currentWidth)
|
||||
$('.panel-cover').animate({'max-width': '530px', 'width': '40%'}, 400, swing = 'swing', function () {})
|
||||
}
|
||||
$('.content-wrapper').addClass('showing');
|
||||
})
|
||||
|
||||
if (window.location.hash && window.location.hash == '#projects') {
|
||||
$('a.panel-button').click();
|
||||
}
|
||||
|
||||
if (window.location.pathname !== '/' && window.location.pathname !== '/index.html') {
|
||||
$('.panel-cover').addClass('panel-cover--collapsed')
|
||||
}
|
||||
|
||||
$('.btn-mobile-menu').click(function () {
|
||||
if (!$('.navigation-wrapper').hasClass('animated bounceInDown')){
|
||||
$('.navigation-wrapper').addClass('animated bounceInDown');
|
||||
}
|
||||
toggleMobileMenu();
|
||||
})
|
||||
|
||||
$('.navigation-wrapper .projects-button').click(function () {
|
||||
toggleMobileMenu();
|
||||
})
|
||||
})
|
||||
77
css/main.scss
Normal file
|
|
@ -0,0 +1,77 @@
|
|||
---
|
||||
---
|
||||
@use "uno";
|
||||
@use "tables";
|
||||
@use "monokai";
|
||||
@use "timeline";
|
||||
@use "gallery";
|
||||
|
||||
/* Modifications */
|
||||
|
||||
pre.highlight,
|
||||
.highlight pre {
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
pre.highlight code,
|
||||
.highlight pre code {
|
||||
white-space: pre-wrap;
|
||||
}
|
||||
|
||||
.btn,
|
||||
.navigation__item a {
|
||||
margin: 5px 0;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.pagination__page-number {
|
||||
display: inline-block;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.categories a,
|
||||
.tags a {
|
||||
border: 1px solid #e25440;
|
||||
border-radius: 20px;
|
||||
color: #e25440;
|
||||
display: inline-block;
|
||||
font-size: 12px;
|
||||
margin: 5px 0;
|
||||
padding: 5px 10px;
|
||||
text-shadow: none;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.post-meta__tags {
|
||||
font-size: 12px;
|
||||
padding: 0 5px;
|
||||
}
|
||||
|
||||
.footer__copyright {
|
||||
margin: 0 20px 10px;
|
||||
}
|
||||
|
||||
.user-image {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center; /* keeps both images centered */
|
||||
width: 130px;
|
||||
height: 130px;
|
||||
border: 3px solid #fff;
|
||||
border-radius:100%;
|
||||
}
|
||||
|
||||
.user-images {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center; /* keeps both images centered */
|
||||
gap: 35px; /* spacing between image and divider */
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
|
||||
.user-divider {
|
||||
width: 2px;
|
||||
height: 80px; /* should be less than image height */
|
||||
background: rgba(255, 255, 255, 0.146); /* divider color */
|
||||
}
|
||||
|
||||
BIN
images/Pic_01.jpg
Normal file
|
After Width: | Height: | Size: 43 KiB |
BIN
images/Pic_02.png
Normal file
|
After Width: | Height: | Size: 137 KiB |
BIN
images/bk1.jpg
Normal file
|
After Width: | Height: | Size: 3 MiB |
BIN
images/cover.jpg
Normal file
|
After Width: | Height: | Size: 202 KiB |
BIN
images/favicons/android-chrome-144x144.png
Normal file
|
After Width: | Height: | Size: 4.8 KiB |
BIN
images/favicons/android-chrome-192x192.png
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
images/favicons/android-chrome-36x36.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
images/favicons/android-chrome-48x48.png
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
images/favicons/android-chrome-72x72.png
Normal file
|
After Width: | Height: | Size: 2.5 KiB |
BIN
images/favicons/android-chrome-96x96.png
Normal file
|
After Width: | Height: | Size: 3.3 KiB |
BIN
images/favicons/apple-touch-icon-114x114.png
Normal file
|
After Width: | Height: | Size: 4.1 KiB |
BIN
images/favicons/apple-touch-icon-120x120.png
Normal file
|
After Width: | Height: | Size: 4.2 KiB |
BIN
images/favicons/apple-touch-icon-144x144.png
Normal file
|
After Width: | Height: | Size: 5.1 KiB |
BIN
images/favicons/apple-touch-icon-152x152.png
Normal file
|
After Width: | Height: | Size: 5.2 KiB |
BIN
images/favicons/apple-touch-icon-180x180.png
Normal file
|
After Width: | Height: | Size: 13 KiB |
BIN
images/favicons/apple-touch-icon-57x57.png
Normal file
|
After Width: | Height: | Size: 2 KiB |
BIN
images/favicons/apple-touch-icon-60x60.png
Normal file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
images/favicons/apple-touch-icon-72x72.png
Normal file
|
After Width: | Height: | Size: 2.6 KiB |
BIN
images/favicons/apple-touch-icon-76x76.png
Normal file
|
After Width: | Height: | Size: 2.6 KiB |
BIN
images/favicons/apple-touch-icon-precomposed.png
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
images/favicons/apple-touch-icon.png
Normal file
|
After Width: | Height: | Size: 13 KiB |
12
images/favicons/browserconfig.xml
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<browserconfig>
|
||||
<msapplication>
|
||||
<tile>
|
||||
<square70x70logo src="/images/favicons/mstile-70x70.png"/>
|
||||
<square150x150logo src="/images/favicons/mstile-150x150.png"/>
|
||||
<square310x310logo src="/images/favicons/mstile-310x310.png"/>
|
||||
<wide310x150logo src="/images/favicons/mstile-310x150.png"/>
|
||||
<TileColor>#00aba9</TileColor>
|
||||
</tile>
|
||||
</msapplication>
|
||||
</browserconfig>
|
||||
BIN
images/favicons/favicon-16x16.png
Normal file
|
After Width: | Height: | Size: 980 B |
BIN
images/favicons/favicon-194x194.png
Normal file
|
After Width: | Height: | Size: 21 KiB |
BIN
images/favicons/favicon-32x32.png
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
BIN
images/favicons/favicon-96x96.png
Normal file
|
After Width: | Height: | Size: 8.5 KiB |
BIN
images/favicons/favicon.ico
Normal file
|
After Width: | Height: | Size: 15 KiB |
41
images/favicons/manifest.json
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
{
|
||||
"name": "Jekyll-Uno",
|
||||
"icons": [
|
||||
{
|
||||
"src": "\/images\/favicons\/android-chrome-36x36.png",
|
||||
"sizes": "36x36",
|
||||
"type": "image\/png",
|
||||
"density": 0.75
|
||||
},
|
||||
{
|
||||
"src": "\/images\/favicons\/android-chrome-48x48.png",
|
||||
"sizes": "48x48",
|
||||
"type": "image\/png",
|
||||
"density": 1
|
||||
},
|
||||
{
|
||||
"src": "\/images\/favicons\/android-chrome-72x72.png",
|
||||
"sizes": "72x72",
|
||||
"type": "image\/png",
|
||||
"density": 1.5
|
||||
},
|
||||
{
|
||||
"src": "\/images\/favicons\/android-chrome-96x96.png",
|
||||
"sizes": "96x96",
|
||||
"type": "image\/png",
|
||||
"density": 2
|
||||
},
|
||||
{
|
||||
"src": "\/images\/favicons\/android-chrome-144x144.png",
|
||||
"sizes": "144x144",
|
||||
"type": "image\/png",
|
||||
"density": 3
|
||||
},
|
||||
{
|
||||
"src": "\/images\/favicons\/android-chrome-192x192.png",
|
||||
"sizes": "192x192",
|
||||
"type": "image\/png",
|
||||
"density": 4
|
||||
}
|
||||
]
|
||||
}
|
||||
BIN
images/favicons/mstile-144x144.png
Normal file
|
After Width: | Height: | Size: 6.4 KiB |
BIN
images/favicons/mstile-150x150.png
Normal file
|
After Width: | Height: | Size: 6.6 KiB |
BIN
images/favicons/mstile-310x150.png
Normal file
|
After Width: | Height: | Size: 7 KiB |
BIN
images/favicons/mstile-310x310.png
Normal file
|
After Width: | Height: | Size: 16 KiB |
BIN
images/favicons/mstile-70x70.png
Normal file
|
After Width: | Height: | Size: 4.4 KiB |
57
images/favicons/safari-pinned-tab.svg
Normal file
|
|
@ -0,0 +1,57 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
|
||||
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
|
||||
<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
|
||||
width="512.000000pt" height="512.000000pt" viewBox="0 0 512.000000 512.000000"
|
||||
preserveAspectRatio="xMidYMid meet">
|
||||
<metadata>
|
||||
Created by potrace 1.11, written by Peter Selinger 2001-2013
|
||||
</metadata>
|
||||
<g transform="translate(0.000000,512.000000) scale(0.100000,-0.100000)"
|
||||
fill="#000000" stroke="none">
|
||||
<path d="M2379 5116 c-2 -2 -35 -6 -74 -10 -222 -19 -495 -86 -705 -173 -101
|
||||
-41 -312 -146 -351 -173 -15 -11 -30 -20 -33 -20 -10 0 -217 -149 -276 -199
|
||||
-161 -135 -304 -283 -421 -436 -281 -368 -455 -810 -506 -1285 -15 -136 -8
|
||||
-503 11 -615 3 -16 8 -43 10 -60 16 -117 90 -399 126 -480 5 -11 21 -49 36
|
||||
-85 167 -413 463 -793 832 -1069 50 -38 89 -71 87 -73 -3 -3 1 -5 7 -5 7 0 51
|
||||
-24 97 -53 77 -47 310 -170 325 -170 3 0 25 -9 49 -19 108 -49 292 -106 437
|
||||
-135 111 -22 129 -25 195 -32 33 -4 64 -9 69 -12 5 -3 104 -6 220 -8 308 -3
|
||||
514 25 791 108 731 219 1337 773 1628 1488 63 155 133 403 151 530 3 25 8 54
|
||||
10 66 30 151 28 545 -3 749 -26 169 -90 415 -136 520 -7 17 -26 61 -41 99 -15
|
||||
38 -49 110 -76 160 -27 50 -56 107 -66 126 -9 19 -20 37 -23 40 -4 3 -21 30
|
||||
-40 60 -18 30 -36 57 -39 60 -3 3 -17 21 -30 40 -107 159 -312 375 -487 513
|
||||
-66 52 -289 207 -298 207 -2 0 -45 22 -95 49 -207 113 -521 224 -720 255 -19
|
||||
3 -44 8 -56 10 -12 2 -45 7 -74 11 -29 4 -62 9 -74 12 -24 5 -452 14 -457 9z
|
||||
m411 -814 c25 -6 59 -13 75 -16 79 -14 252 -85 325 -133 71 -47 86 -59 148
|
||||
-118 159 -149 232 -339 235 -608 1 -111 -7 -254 -17 -317 -17 -97 -17 -100 5
|
||||
-100 36 0 76 -28 95 -67 18 -39 25 -164 12 -228 -17 -82 -63 -175 -115 -231
|
||||
-20 -21 -67 -100 -105 -174 -206 -401 -424 -614 -702 -685 -118 -30 -282 -28
|
||||
-396 5 -270 77 -516 333 -700 725 -21 44 -56 99 -77 122 -140 149 -177 459
|
||||
-62 518 15 8 37 15 49 15 16 0 19 5 16 23 -25 121 -38 384 -25 502 13 107 40
|
||||
223 59 250 4 6 11 21 15 35 23 76 146 221 250 295 143 101 331 174 495 192 30
|
||||
3 57 7 59 9 9 8 320 -4 361 -14z m-878 -2957 c-6 -197 20 -286 152 -528 49
|
||||
-90 180 -266 257 -347 57 -59 147 -137 195 -170 l46 -31 72 54 c119 90 263
|
||||
247 351 382 21 33 41 62 44 65 19 17 119 223 147 305 26 74 28 92 29 238 0
|
||||
109 3 156 11 153 28 -11 246 -80 399 -126 285 -87 446 -153 572 -236 63 -41
|
||||
153 -126 153 -143 0 -13 -125 -142 -205 -211 -97 -84 -312 -240 -331 -240 -4
|
||||
0 -15 -6 -23 -14 -27 -24 -267 -141 -371 -181 -58 -22 -261 -85 -269 -83 -3 1
|
||||
-24 -4 -46 -10 -201 -56 -591 -76 -840 -41 -208 29 -367 68 -536 133 -137 52
|
||||
-349 154 -349 168 0 5 -3 7 -8 4 -10 -6 -232 141 -232 154 0 6 -4 9 -8 6 -5
|
||||
-3 -19 5 -33 17 -13 12 -62 54 -109 94 -102 87 -200 187 -200 206 0 17 77 88
|
||||
151 138 118 81 331 168 624 255 50 14 149 46 220 69 72 24 132 44 135 44 3 1
|
||||
3 -55 2 -124z m814 100 c19 -14 45 -41 60 -61 35 -45 29 -58 -70 -162 l-76
|
||||
-79 89 -220 88 -221 -32 -43 c-36 -51 -184 -189 -202 -189 -6 0 -13 -5 -15
|
||||
-12 -9 -26 -160 101 -227 190 l-38 52 88 222 89 222 -55 49 c-59 52 -115 126
|
||||
-115 151 0 9 25 40 56 71 l56 55 136 0 c129 0 137 -1 168 -25z"/>
|
||||
<path d="M2043 3668 c-119 -40 -232 -146 -298 -278 -27 -54 -28 -57 -21 -185
|
||||
3 -71 10 -148 15 -170 5 -22 12 -57 15 -77 3 -20 15 -77 25 -125 11 -48 19
|
||||
-89 17 -90 -1 -2 -13 23 -26 55 -30 73 -75 139 -100 147 -26 8 -65 -19 -80
|
||||
-56 -11 -26 -9 -111 3 -169 9 -42 63 -134 98 -167 21 -20 42 -46 45 -58 8 -23
|
||||
119 -249 154 -310 100 -179 231 -319 350 -377 105 -50 192 -70 319 -70 281 0
|
||||
471 116 634 385 18 31 36 54 39 51 3 -3 6 1 5 8 -1 7 34 85 78 173 53 109 94
|
||||
177 126 213 80 88 123 256 85 330 -46 89 -116 51 -176 -96 -21 -52 -25 -40 -9
|
||||
28 14 59 16 71 23 116 7 44 17 99 23 129 2 11 6 50 8 88 l5 67 -47 1 c-27 0
|
||||
-64 2 -83 4 -19 1 -67 6 -105 9 -92 7 -152 16 -285 42 -266 52 -482 162 -696
|
||||
355 -29 25 -59 46 -68 46 -9 0 -42 -9 -73 -19z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.7 KiB |
BIN
images/tzuehlke copy.jpg
Normal file
|
After Width: | Height: | Size: 20 KiB |
33
index.html
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
---
|
||||
layout: default
|
||||
robots: noindex
|
||||
---
|
||||
<ul class="timeline">
|
||||
{% for project in site.data.projects %}
|
||||
<li class="timeline-inverted">
|
||||
<div class="timeline-image">
|
||||
<a href="{{ project.url }}" target="_blank" style="display: flex; width: 100%; height: 100%; align-items: center; justify-content: center;">
|
||||
<img class="img-me" src="{{ project.img | prepend: site.baseurl }}" alt="">
|
||||
</a>
|
||||
</div>
|
||||
<div class="timeline-panel">
|
||||
<div class="timeline-heading">
|
||||
<h4>
|
||||
<a href="{{ project.url }}" target="_blank">
|
||||
{{ project.name }}
|
||||
</a>
|
||||
</h4>
|
||||
</div>
|
||||
<div class="timeline-body">
|
||||
{% if project.desc %}
|
||||
{{ project.desc | markdownify }}
|
||||
{% else %}
|
||||
<div repotext="{{ project.repo }}">
|
||||
<span class="desc"></span>
|
||||
</div>
|
||||
{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||