-
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
1 parent
26a6e40
commit 68bdd0c
Showing
17 changed files
with
58 additions
and
67 deletions.
There are no files selected for viewing
File renamed without changes.
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,5 @@ | ||
+++ | ||
title = 'Blog' | ||
menu = 'main' | ||
weight = 5 | ||
weight = 2 | ||
+++ |
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -4,6 +4,7 @@ enableRobotsTXT = true | |
googleAnalytics = 'G-RHCZGDQQJR' | ||
languageCode = 'en' | ||
title = 'Kirill Bobyrev' | ||
disableKinds = ['taxonomy', 'term'] | ||
|
||
[params] | ||
description = 'Blog about Software Engineering and hobbies by Kirill Bobyrev' | ||
|
@@ -13,6 +14,7 @@ title = 'Kirill Bobyrev' | |
dateDisplayFormat = "2 Jan, 2006" | ||
[params.author] | ||
name = 'Kirill Bobyrev' | ||
# This is needed for _internal/twitter_cards.html | ||
[params.social] | ||
twitter = 'kirillbobyrev' | ||
|
||
|
@@ -33,4 +35,14 @@ title = 'Kirill Bobyrev' | |
[[menu.main]] | ||
name = 'Resume' | ||
url = '/resume.pdf' | ||
weight = 4 | ||
weight = 3 | ||
|
||
|
||
# [Telegram](https://telegram.me/kirillbobyrev) | ||
# <[email protected]> | ||
|
||
# [LinkedIn](https://linkedin.com/in/kirillbobyrev) | ||
# [GitHub](https://github.com/kirillbobyrev) | ||
# [Instagram](https://instagram.com/cybobyrev) | ||
# [Lichess](https://lichess.org/@/kirillbobyrev) | ||
# [Codeforces](https://codeforces.com/profile/kirillbobyrev) |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,15 @@ | ||
{{ define "main" }} | ||
|
||
{{ .Content }} | ||
|
||
<ul class="blog-posts"> | ||
{{ range .Pages }} | ||
<li> | ||
<article> | ||
<a href="{{ .Permalink }}">{{ .Title }}</a> | ||
</article> | ||
</li> | ||
{{ end }} | ||
</ul> | ||
|
||
{{ end }} |
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,15 @@ | ||
{{ define "main" }} | ||
|
||
{{ .Content }} | ||
|
||
<ul class="notes"> | ||
{{ range .Pages }} | ||
<li> | ||
<article> | ||
<a href="{{ .Permalink }}">{{ .Title }}</a> | ||
</article> | ||
</li> | ||
{{ end }} | ||
</ul> | ||
|
||
{{ end }} |
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