-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Sravan Sarraju
committed
Mar 3, 2024
1 parent
fbe534f
commit 449037c
Showing
7 changed files
with
47 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
.obsidian | ||
.env | ||
.env.build | ||
public |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
title: My Favorite Tool | ||
date: 2024-03-03 | ||
link: https://example.com/my-favorite-tool | ||
--- | ||
|
||
Brief description of why this tool is my favorite. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
title: My Favorite Tool | ||
date: 2024-03-03 | ||
link: https://example.com/my-favorite-tool | ||
--- | ||
|
||
Brief description of why this tool is my favorite. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
+++ | ||
title = 'Hello Again' | ||
date = 2024-02-01T11:22:26-08:00 | ||
+++ | ||
--- | ||
title: Hello Again | ||
date: 2024-02-01T11:22:26-08:00 | ||
--- | ||
|
||
# Testing the second blog post |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
+++ | ||
title = 'Hello' | ||
date = 2023-11-30T11:22:26-08:00 | ||
+++ | ||
--- | ||
title: Hello | ||
date: 2023-11-30T11:22:26-08:00 | ||
--- | ||
|
||
Welcome to my blog. This is my first post where I spent sometime wiring up my custom domain, github pages and a github actions workflow. Im using Hugo for my blog. Looking forward to share my experiments and learnings here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{{ define "main" }} | ||
<h1>What I read recently</h1> | ||
<ul> | ||
{{ range .Pages }} | ||
<li> | ||
<a href={{ .Params.link }}>{{ .Title }}</a> - {{ .Summary }} | ||
</li> | ||
{{ end }} | ||
</ul> | ||
{{ end }} | ||
|