diff --git a/config.yaml b/config.yaml index a3c1a4f..af4180e 100644 --- a/config.yaml +++ b/config.yaml @@ -15,9 +15,6 @@ menu: - name: PROJECTS pageRef: /projects weight: 30 - - name: ABOUT - pageRef: /about - weight: 30 - name: NOW pageRef: /now weight: 40 diff --git a/content/_index.md b/content/_index.md index 73ecae1..abe5f7b 100644 --- a/content/_index.md +++ b/content/_index.md @@ -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. diff --git a/content/now.html b/content/now.html deleted file mode 100644 index 64b9bac..0000000 --- a/content/now.html +++ /dev/null @@ -1,8 +0,0 @@ ---- -title: "Now" -date: 2023-04-17T15:00:46-07:00 ---- -
-

Now

- Coming soon -
diff --git a/content/now.md b/content/now.md new file mode 100644 index 0000000..ef81f6a --- /dev/null +++ b/content/now.md @@ -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 diff --git a/layouts/partials/left-sidebar.html b/layouts/partials/left-sidebar.html index 7b3f16c..3275df2 100644 --- a/layouts/partials/left-sidebar.html +++ b/layouts/partials/left-sidebar.html @@ -1,4 +1,6 @@ -

Latest Blog Posts

+

Latest Blog Posts

{{ range first 3 (where .Site.RegularPages.ByDate.Reverse "Section" "blog") }} -

{{ .Name }}

+

{{ .Name }}

+

{{ .Summary }}

+Read More > {{ end }} diff --git a/themes/saturn/layouts/blog/list.html b/themes/saturn/layouts/blog/list.html index 8ebeca0..b1bb699 100644 --- a/themes/saturn/layouts/blog/list.html +++ b/themes/saturn/layouts/blog/list.html @@ -10,7 +10,7 @@

{{ if .Truncated }}
- Read More... + Read More >
{{ end }} diff --git a/themes/saturn/layouts/index.html b/themes/saturn/layouts/index.html index f679bd7..6a9d212 100644 --- a/themes/saturn/layouts/index.html +++ b/themes/saturn/layouts/index.html @@ -1,6 +1,9 @@ {{ define "main" }} -
-{{ .Content }} - {{ partial "left-sidebar.html" . }} -
+ {{ .Content }} +

Latest Blog Posts

+ {{ range first 3 (where .Site.RegularPages.ByDate.Reverse "Section" "blog") }} +

{{ .Name }}

+

{{ .Summary }}

+ Read More > + {{ end }} {{ end }} diff --git a/themes/saturn/static/css/main.css b/themes/saturn/static/css/main.css index 32452a3..f2a6103 100644 --- a/themes/saturn/static/css/main.css +++ b/themes/saturn/static/css/main.css @@ -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;