Skip to content

Commit ca692bd

Browse files
committed
update theme
2 parents c81699b + b3ce893 commit ca692bd

File tree

186 files changed

+15272
-7367
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

186 files changed

+15272
-7367
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
### VisualStudioCode Patch ###
1313
# Ignore all local history of files
1414
.history
15+
node_modules/
1516

1617
# End of https://www.gitignore.io/api/visualstudiocode
1718

.gitmodules

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
[submodule "themes/hello-friend-ng"]
22
path = themes/hello-friend-ng
33
url = https://github.com/rhazdon/hugo-theme-hello-friend-ng.git
4+
[submodule "themes/terminal"]
5+
path = themes/terminal
6+
url = https://github.com/panr/hugo-theme-terminal.git

config.toml

+25-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
baseurl = "/"
22
languageCode = "en-us"
3-
#theme = "hello-friend"
3+
theme = "hello-friend"
44
#theme = "Niello"
5-
theme = "hello-friend-ng"
5+
#disableKinds = ["sitemap"]
6+
#disableRSS = true
7+
#theme = "terminal"
68
paginate = 5
79

810

@@ -53,6 +55,7 @@ paginate = 5
5355
name = "twitter"
5456
url = "https://twitter.com/linuxbyte3"
5557

58+
<<<<<<< HEAD
5659
[[languages.en.menu.main]]
5760
identifier = "blog"
5861
name = "Blog"
@@ -66,10 +69,30 @@ paginate = 5
6669
name = "Pyjournals"
6770
url = "/pyjournal"
6871
# [[languages.en.menu.main]]
72+
=======
73+
[[languages.en.menu.main]]
74+
identifier = "blog"
75+
name = "Blog"
76+
url = "/posts"
77+
[[languages.en.menu.main]]
78+
identifier = "about"
79+
name = "About"
80+
url = "/about"
81+
# [[languages.en.menu.main]]
82+
>>>>>>> b3ce8933a4dcfb7bc0f366842d31c9730c1fb629
6983
# identifier = "projects"
7084
# name = "Projects"
7185
# url = "/projects"
7286

87+
88+
#[taxonomies]
89+
# category = "blog"
90+
# tag = "tags"
91+
# series = "series"
92+
93+
#[taxonomies]
94+
# tag = "tags"
95+
# category = "categories"
7396
[taxonomies]
7497
tag = "tags"
7598
category = "categories"

content/pyjournal/freq_numbers.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
title: 'Freq Digits'
33
date: 2020-07-07
4+
draft: true
45
---
56

67
Given an integer number, find the most frequent digit in it.

0 commit comments

Comments
 (0)