Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit a080fbd

Browse filesBrowse files
committed
blog first entry
0 parents  commit a080fbd
Copy full SHA for a080fbd

File tree

Expand file treeCollapse file tree

110 files changed

+49434
-0
lines changed
Filter options

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Dismiss banner
Expand file treeCollapse file tree

110 files changed

+49434
-0
lines changed

‎.gitmodules

Copy file name to clipboard
+3Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "themes/flat"]
2+
path = themes/flat
3+
url = https://github.com/leafee98/hugo-theme-flat

‎.hugo_build.lock

Copy file name to clipboardExpand all lines: .hugo_build.lock
Whitespace-only changes.

‎README.md

Copy file name to clipboard
+3Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Personal Blog
2+
3+
The repo contains the source code of my personal blog.

‎archetypes/default.md

Copy file name to clipboard
+5Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
+++
2+
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
3+
date = {{ .Date }}
4+
draft = true
5+
+++

‎content/posts/my-first-post.md

Copy file name to clipboard
+15Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
+++
2+
title = 'My First Post'
3+
date = 2023-09-29T20:26:28+05:30
4+
draft = false
5+
+++
6+
7+
# Hey There 👋
8+
9+
Alright, I had been thinking for a long time to start writing a blog. Not necessarily something technical, but just dump some of the thoughts, learnings, and resources for my future self. Starting out finally now, and this is the first post.
10+
11+
Well, that was it for the first post, stay tuned for the next one.
12+
13+
Scoop: next one is gonna be something related to the fitness journey I am on. 🏋️‍♂️
14+
15+
And LOL, GPT helping me with these emojis is just LIT 🔥

‎hugo.toml

Copy file name to clipboard
+4Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
baseURL = 'https://singhcoder.github.io/'
2+
languageCode = 'en-us'
3+
title = 'My Personal Blog'
4+
theme = 'flat'

‎public/categories/index.html

Copy file name to clipboard
+116Lines changed: 116 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,116 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<meta name="viewport" content="width=device-width,minimum-scale=1">
6+
7+
8+
9+
10+
<title>My Personal Blog</title>
11+
<link rel="canonical" href="https://singhcoder.github.io/categories/">
12+
<meta property="og:type" content="article" />
13+
<meta property="og:title" content="My Personal Blog" />
14+
<meta property="og:url" content="https://singhcoder.github.io/categories/" />
15+
<link rel="alternate" type="application/rss+xml" href="https://singhcoder.github.io/categories/index.xml" title="My Personal Blog" />
16+
17+
18+
19+
20+
21+
22+
23+
24+
<link rel="stylesheet" href="/lib/icofont/icofont.min.css" />
25+
<link rel="stylesheet" href="/css/syntax.css" />
26+
<link rel="stylesheet" href="/css/style.css" />
27+
<link rel="shortcut icon" href="/images/favicon.ico" type="image/x-icon" />
28+
29+
</head>
30+
31+
<body>
32+
<header class="header-wrapper">
33+
<div class="header">
34+
<a class="site-title" href="https://singhcoder.github.io/">My Personal Blog</a>
35+
36+
<nav class="menu">
37+
38+
</nav>
39+
</div>
40+
</header>
41+
42+
<main class="main-wrapper">
43+
<div class="main">
44+
45+
<section id="tags">
46+
47+
48+
</section>
49+
50+
</div>
51+
<div class="side">
52+
53+
<div class="side-recent">
54+
<h2 class="side-title">
55+
<a href="/posts/">Recent Posts</a>
56+
</h2>
57+
<hr />
58+
59+
<ul>
60+
61+
<li>
62+
<a href="/posts/my-first-post/">My First Post</a>
63+
</li>
64+
65+
</ul>
66+
</div>
67+
68+
69+
<div class="side-categories">
70+
<h2>Categories</h2>
71+
<hr />
72+
73+
<ul>
74+
75+
</ul>
76+
</div>
77+
78+
<div class="side-tags">
79+
<h2>Tags</h2>
80+
<hr />
81+
82+
<ul>
83+
84+
</ul>
85+
</div>
86+
87+
</div>
88+
</main>
89+
<footer class="footer">
90+
<div class="footer-row">
91+
92+
93+
94+
<a class="footer-item" href="https://singhcoder.github.io/posts/index.xml">
95+
Feed of Posts
96+
<i class="icofont-rss"></i>
97+
</a>
98+
99+
100+
101+
102+
103+
104+
<a class="footer-item" href="https://singhcoder.github.io/categories/index.xml">
105+
Feed of "Categories"
106+
<i class="icofont-rss"></i>
107+
</a>
108+
109+
110+
</div>
111+
112+
113+
</footer>
114+
115+
</body>
116+
</html>

‎public/categories/index.xml

Copy file name to clipboard
+10Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
2+
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
3+
<channel>
4+
<title>Categories on My Personal Blog</title>
5+
<link>https://singhcoder.github.io/categories/</link>
6+
<description>Recent content in Categories on My Personal Blog</description>
7+
<generator>Hugo -- gohugo.io</generator>
8+
<language>en-us</language><atom:link href="https://singhcoder.github.io/categories/index.xml" rel="self" type="application/rss+xml" />
9+
</channel>
10+
</rss>

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.