Skip to content

Commit 80992b8

Browse files
committed
Update page
1 parent 63ff8f8 commit 80992b8

3 files changed

Lines changed: 41 additions & 50 deletions

File tree

_layouts/base.html

Lines changed: 24 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -14,30 +14,30 @@
1414
<!DOCTYPE html>
1515
<html lang="en">
1616
<head>
17-
<meta charset="utf-8" />
18-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
17+
<meta charset="utf-8">
18+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
1919
<title>{{ page_title }}</title>
20-
<meta name="title" content="{{ page_title }}" />
21-
<meta name="description" content="{{ page_description }}" />
22-
<meta name="author" content="Dani Bengl" />
23-
<link rel="canonical" href="{{ current_url }}" />
24-
<meta property="og:type" content="{{ og_type }}" />
25-
<meta property="og:url" content="{{ current_url }}" />
26-
<meta property="og:title" content="{{ page_title }}" />
27-
<meta property="og:description" content="{{ page_description }}" />
28-
<meta property="og:image" content="{{ site_url }}/og-image.png" />
29-
<meta property="og:site_name" content="CB341.DEV" />
30-
<meta property="og:locale" content="en_US" />
20+
<meta name="title" content="{{ page_title }}">
21+
<meta name="description" content="{{ page_description }}">
22+
<meta name="author" content="Dani Bengl">
23+
<link rel="canonical" href="{{ current_url }}">
24+
<meta property="og:type" content="{{ og_type }}">
25+
<meta property="og:url" content="{{ current_url }}">
26+
<meta property="og:title" content="{{ page_title }}">
27+
<meta property="og:description" content="{{ page_description }}">
28+
<meta property="og:image" content="{{ site_url }}/og-image.png">
29+
<meta property="og:site_name" content="CB341.DEV">
30+
<meta property="og:locale" content="en_US">
3131
<!-- TODO: create og-image.png for social sharing previews -->
32-
<meta property="twitter:card" content="summary_large_image" />
33-
<meta property="twitter:url" content="{{ current_url }}" />
34-
<meta property="twitter:title" content="{{ page_title }}" />
35-
<meta property="twitter:description" content="{{ page_description }}" />
36-
<meta property="twitter:image" content="{{ site_url }}/og-image.png" />
37-
<meta property="twitter:creator" content="@cb341" />
38-
<meta name="robots" content="index, follow" />
39-
<meta name="theme-color" content="#ffffff" />
40-
<link rel="alternate" type="application/rss+xml" title="CB341.DEV RSS Feed" href="/rss.xml" />
32+
<meta property="twitter:card" content="summary_large_image">
33+
<meta property="twitter:url" content="{{ current_url }}">
34+
<meta property="twitter:title" content="{{ page_title }}">
35+
<meta property="twitter:description" content="{{ page_description }}">
36+
<meta property="twitter:image" content="{{ site_url }}/og-image.png">
37+
<meta property="twitter:creator" content="@cb341">
38+
<meta name="robots" content="index, follow">
39+
<meta name="theme-color" content="#ffffff">
40+
<link rel="alternate" type="application/rss+xml" title="CB341.DEV RSS Feed" href="/rss.xml">
4141
<script type="application/ld+json">
4242
{
4343
"@context": "https://schema.org",
@@ -65,6 +65,7 @@
6565
margin-left: auto;
6666
margin-right: auto;
6767
text-align: center;
68+
overflow-y: scroll;
6869
}
6970

7071
/* reset: body centers header/footer, main overrides back to left */
@@ -132,7 +133,7 @@ <h1>{% include navlink.html href="/" label="CB341.DEV" %}</h1>
132133
<footer role="contentinfo">
133134
<hr>
134135
<p><small>&copy; {{ "now" | date: "%Y" }} cb341. Licensed under <a href="https://creativecommons.org/licenses/by/4.0/" target="_blank" rel="noopener noreferrer">CC BY 4.0</a>.</small></p>
135-
<a href="https://github.com/cb341" target="_blank" rel="noopener noreferrer">GitHub</a>
136+
<a href="https://github.com/cb341/cb341.github.io" target="_blank" rel="noopener noreferrer">GitHub Repo</a>
136137
|
137138
<a href="https://discord.com/users/456151064484249612" target="_blank" rel="noopener noreferrer">Discord</a>
138139
|

index.html

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,9 @@
55
---
66

77
<h1>Hello, I'm Dani!</h1>
8-
<small><a href="https://en.pronouns.page/@cb341" target="_blank" rel="noopener noreferrer">(it/its)</a></small>
98
<p>
10-
I'm a full-stack software developer at <a href="https://www.renuo.ch/" target="_blank" rel="noopener noreferrer">Renuo</a>, a Swiss web development company specializing in <a href="https://rubyonrails.org/" target="_blank" rel="noopener noreferrer">Ruby on Rails</a>. I work on building robust web applications and enjoy the elegance and productivity that Rails brings to development.
9+
Queer developer at <a href="https://www.renuo.ch/" target="_blank" rel="noopener noreferrer">Renuo</a>, Software on Rails as a service. Studying Computer Science (BSc) at <a href="https://www.zhaw.ch/" target="_blank" rel="noopener noreferrer">ZHAW</a> School of Engineering. I live in the terminal, live by open source, and want things to work.
1110
</p>
12-
<nav aria-label="Quick navigation">
13-
<ul>
14-
<li><a href="/about/">About Me</a></li>
15-
<li><a href="/projects/">View Projects</a></li>
16-
<li><a href="/blog/">Read Blog</a></li>
17-
</ul>
18-
</nav>
1911

2012
{%- assign latest_post = site.posts.first -%}
2113
{%- if latest_post %}
@@ -26,7 +18,6 @@ <h3><a href="{{ latest_post.url }}">{{ latest_post.title }}</a></h3>
2618
<em>Published on <time datetime="{{ latest_post.date | date_to_xmlschema }}">{{ latest_post.date | date: site.date_format }}</time></em>
2719
<p>{{ latest_post.description }}</p>
2820
</article>
29-
<p><a href="/blog/">All Posts</a></p>
3021
</section>
3122
{%- endif %}
3223

@@ -46,5 +37,4 @@ <h3><a href="{{ featured_project.url }}">{{ featured_project.title }}</a></h3>
4637
{%- endif %}
4738
</article>
4839
{%- endif %}
49-
<p><a href="/projects/">All Projects</a></p>
5040
</section>

pages/about.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -6,30 +6,30 @@ permalink: /about/
66

77
# About Me
88

9-
<small>[(it/its)](https://en.pronouns.page/@cb341)</small>
9+
I'm a queer developer [(it/its)](https://en.pronouns.page/@cb341) working at [Renuo](https://www.renuo.ch/), Software on Rails as a service, while studying Computer Science (BSc) at [ZHAW](https://www.zhaw.ch/) School of Engineering, currently in my second year.
1010

11-
## Professional
11+
I tend to get very into specific things, and I'd like to eventually work my way toward a PhD. One day I'll have a classroom-sized blackboard in my apartment.
1212

13-
I'm a full-stack software developer at [Renuo](https://www.renuo.ch/), a Swiss web development company specializing in [Ruby on Rails](https://rubyonrails.org/). I work on building robust web applications and enjoy the elegance and productivity that Rails brings to development.
13+
I live in the terminal and like software that does one thing well. No unnecessary abstractions. [KISS](https://en.wikipedia.org/wiki/KISS_principle). I just want things to work. The web is a mess and software has gotten bloated, over-engineered, and slow. I'd rather go back to Rails and a terminal than deal with another layer of indirection.
1414

15-
## Education
15+
I live by open source and have little patience for corporate software culture.
1616

17-
I'm currently in my 1st year studying Bachelor of Applied Computer Science at [ZHAW](https://www.zhaw.ch/) (Zurich University of Applied Sciences).
17+
READ THE DOCS.
1818

19-
## Interests
19+
I love Rust and use it for personal projects, hoping to work on a real production codebase with it someday. Most of my free time goes into building things, or learning about building things. I want to understand the world around me. It takes time.
2020

21-
I have a deep appreciation for mathematics and find beauty in its logical structures and problem-solving approaches. My technical interests include web development and computer graphics.
21+
> "You don't change VIM, VIM changes YOU" — [Interview with a VIM Enthusiast](https://www.youtube.com/watch?v=9n1dtmzqnCU)
2222
23-
## Hobbies
23+
If you're not an engineer or mathematician, don't expect us to get along. Ask me about Ruby symbols or my favourite parts of IEEE 754, not how the weather's been.
2424

25-
When I'm not working, you'll find me:
25+
I am trying to make the world a better place.
2626

27-
- **Coding** — personal projects and exploring new technologies
28-
- **Reading about coding** — staying up-to-date with development trends
29-
- **Linux ricing** — customizing and optimizing my Linux desktop environment
30-
- **Customizing Neovim** — fine-tuning my development environment
31-
- **Factory games** — Satisfactory, Astroneer, Minecraft redstone
27+
---
3228

33-
## Get in Touch
29+
- Borrowing the neighbor's cat
30+
- Learning chess, mostly blundering my way to a chaotic checkmate
31+
- Occasionally losing an afternoon to factory games
32+
- A little obsessed with syntax
33+
- Very busy. Please be patient with my response.
3434

35-
Feel free to reach out if you'd like to discuss technology, collaborate on projects, or just chat about programming. Check out the footer for my social links.
35+
Inspired by [motherfuckingwebsite.com](https://motherfuckingwebsite.com/).

0 commit comments

Comments
 (0)