merge about into index, add blog summary to index, add to /now
This commit is contained in:
parent
af0a42ec55
commit
4d3d18cf0b
|
@ -15,9 +15,6 @@ menu:
|
|||
- name: PROJECTS
|
||||
pageRef: /projects
|
||||
weight: 30
|
||||
- name: ABOUT
|
||||
pageRef: /about
|
||||
weight: 30
|
||||
- name: NOW
|
||||
pageRef: /now
|
||||
weight: 40
|
||||
|
|
|
@ -3,4 +3,4 @@ title: yequari.com
|
|||
---
|
||||
# hello
|
||||
|
||||
I'm yequari, welcome to my homepage! I write about tech, the web, programming, games, and random thoughts I have.
|
||||
I'm yequari, welcome to my homepage! I am a software developer, interested in the small web and systems programming. My hobbies include games of all kinds, coding, and collecting Transformers figures. On this site I write about the web, programming, games, and random thoughts I have.
|
||||
|
|
|
@ -1,8 +0,0 @@
|
|||
---
|
||||
title: "Now"
|
||||
date: 2023-04-17T15:00:46-07:00
|
||||
---
|
||||
<div id="content">
|
||||
<h1>Now</h1>
|
||||
Coming soon
|
||||
</div>
|
|
@ -0,0 +1,13 @@
|
|||
---
|
||||
title: "Now"
|
||||
date: 2023-04-17T15:00:46-07:00
|
||||
---
|
||||
# Now
|
||||
|
||||
One day this page will pull some info from APIs to create a more interesting page but for now I just manually update it as needed.
|
||||
|
||||
**Games I'm playing**: Cyberpunk 2077, Honkai Star Rail, Baldur's Gate 3
|
||||
|
||||
**Shows I'm watching**: Nothing currently
|
||||
|
||||
**Music I'm listening to**: Kyuss, Tool, Cyberpunk 2077 Soundtrack, 100 gecs, King Crimson, breakcore
|
|
@ -1,4 +1,6 @@
|
|||
<p>Latest Blog Posts</p>
|
||||
<h2>Latest Blog Posts</h2>
|
||||
{{ range first 3 (where .Site.RegularPages.ByDate.Reverse "Section" "blog") }}
|
||||
<p><a href="{{ .RelPermalink }}">{{ .Name }}</a></p>
|
||||
<h3><a href="{{ .RelPermalink }}">{{ .Name }}</a></h3>
|
||||
<p>{{ .Summary }}</p>
|
||||
<a href="{{ .RelPermalink }}">Read More ></a>
|
||||
{{ end }}
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
</p>
|
||||
{{ if .Truncated }}
|
||||
<div>
|
||||
<a href="{{ .RelPermalink }}">Read More...</a>
|
||||
<a href="{{ .RelPermalink }}">Read More ></a>
|
||||
</div>
|
||||
{{ end }}
|
||||
</article>
|
||||
|
|
|
@ -1,6 +1,9 @@
|
|||
{{ define "main" }}
|
||||
<div id="content">
|
||||
{{ .Content }}
|
||||
{{ partial "left-sidebar.html" . }}
|
||||
</div>
|
||||
<h2>Latest Blog Posts</h2>
|
||||
{{ range first 3 (where .Site.RegularPages.ByDate.Reverse "Section" "blog") }}
|
||||
<h3>{{ .Name }}</h3>
|
||||
<p>{{ .Summary }}</p>
|
||||
<a href="{{ .RelPermalink }}">Read More ></a>
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
|
|
|
@ -232,11 +232,9 @@ nav li a:hover, nav li a:active {
|
|||
}
|
||||
|
||||
main {
|
||||
flex: 1;
|
||||
display: flex;
|
||||
flex: 8 1;
|
||||
background-color: var(--content-bg);
|
||||
padding: 0 150px;
|
||||
flex-flow: row wrap;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
|
@ -253,10 +251,6 @@ main li {
|
|||
line-height: 1;
|
||||
}
|
||||
|
||||
.content {
|
||||
flex: 8 1;
|
||||
padding: 0 1rem;
|
||||
}
|
||||
|
||||
article p {
|
||||
text-indent: 1rem;
|
||||
|
|
Loading…
Reference in New Issue