Skip to content

Commit 7edacc8

Browse files
committed
Initial commit
0 parents  commit 7edacc8

14 files changed

+210
-0
lines changed

Diff for: .gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
_site
2+
.sass-cache
3+
.jekyll-metadata
4+
Gemfile.lock

Diff for: CNAME

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
tammach.dev

Diff for: Gemfile

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
source "https://rubygems.org"
2+
3+
gem "github-pages", group: :jekyll_plugins
4+
5+
gem "tzinfo-data"
6+
gem "wdm", "~> 0.1.0" if Gem.win_platform?
7+
8+
# If you have any plugins, put them here!
9+
group :jekyll_plugins do
10+
gem "jekyll-paginate"
11+
gem "jekyll-sitemap"
12+
gem "jekyll-gist"
13+
gem "jekyll-feed"
14+
gem "jemoji"
15+
gem "jekyll-include-cache"
16+
gem "jekyll-algolia"
17+
end

Diff for: README.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Personal Blog
2+
3+
My personal blog with Jekyll

Diff for: _config.yml

+118
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,118 @@
1+
# Welcome to Jekyll!
2+
#
3+
# This config file is meant for settings that affect your whole blog, values
4+
# which you are expected to set up once and rarely edit after that. If you find
5+
# yourself editing this file very often, consider using Jekyll's data files
6+
# feature for the data you need to update frequently.
7+
#
8+
# For technical reasons, this file is *NOT* reloaded automatically when you use
9+
# 'bundle exec jekyll serve'. If you change this file, please restart the server process.
10+
11+
# Site settings
12+
# These are used to personalize your new site. If you look in the HTML files,
13+
# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
14+
# You can create any custom variable you would like, and they will be accessible
15+
# in the templates via {{ site.myvariable }}.
16+
title: Tam Mach
17+
18+
repository: "sayboras/tammach.github.io"
19+
description: >- # this means to ignore newlines until "baseurl:"
20+
Write an awesome description for your new site here. You can edit this
21+
line in _config.yml. It will appear in your document head meta (for
22+
Google search results) and in your feed.xml site description.
23+
twitter_username: sayboras
24+
github_username: sayboras
25+
minimal_mistakes_skin: default
26+
search: true
27+
28+
# Build settings
29+
markdown: kramdown
30+
remote_theme: mmistakes/minimal-mistakes
31+
# Outputting
32+
permalink: /:categories/:title/
33+
paginate: 5 # amount of posts to show
34+
paginate_path: /page:num/
35+
timezone: # https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
36+
37+
include:
38+
- _pages
39+
40+
# Exclude from processing.
41+
# The following items will not be processed, by default. Create a custom list
42+
# to override the default setting.
43+
# exclude:
44+
# - Gemfile
45+
# - Gemfile.lock
46+
# - node_modules
47+
# - vendor/bundle/
48+
# - vendor/cache/
49+
# - vendor/gems/
50+
# - vendor/ruby/
51+
52+
# Plugins (previously gems:)
53+
plugins:
54+
- jekyll-paginate
55+
- jekyll-sitemap
56+
- jekyll-gist
57+
- jekyll-feed
58+
- jemoji
59+
- jekyll-include-cache
60+
61+
author:
62+
name: "Tam Mach"
63+
avatar: "https://avatars0.githubusercontent.com/u/9019229?s=460&u=62b183b5842761b21b07f730efdf78cbaf0ff3d5&v=4"
64+
bio: "A software engineer who would like to learn one or two new things daily. Currently, I am learning golang and networking."
65+
links:
66+
- label: "Stackoverflow"
67+
icon: "fas fa-fw fa-link"
68+
url: "https://stackoverflow.com/users/8763847/sayboras"
69+
- label: "GitHub"
70+
icon: "fab fa-fw fa-github"
71+
url: "https://github.com/sayboras"
72+
- label: "Linkedin"
73+
icon: "fab fa-fw fa-linkedin"
74+
url: "https://www.linkedin.com/in/cong-tam-mach/"
75+
- label: "Twitter"
76+
icon: "fab fa-fw fa-twitter-square"
77+
url: "https://twitter.com/sayboras"
78+
footer:
79+
links:
80+
- label: "Stackoverflow"
81+
icon: "fas fa-fw fa-link"
82+
url: "https://stackoverflow.com/users/8763847/sayboras"
83+
- label: "GitHub"
84+
icon: "fab fa-fw fa-github"
85+
url: "https://github.com/sayboras"
86+
- label: "Linkedin"
87+
icon: "fab fa-fw fa-linkedin"
88+
url: "https://www.linkedin.com/in/cong-tam-mach/"
89+
- label: "Twitter"
90+
icon: "fab fa-fw fa-twitter-square"
91+
url: "https://twitter.com/sayboras"
92+
93+
defaults:
94+
# _posts
95+
- scope:
96+
path: ""
97+
type: posts
98+
values:
99+
layout: single
100+
author_profile: true
101+
read_time: true
102+
comments: true
103+
share: true
104+
related: true
105+
# _pages
106+
- scope:
107+
path: "_pages"
108+
type: pages
109+
values:
110+
layout: single
111+
author_profile: true
112+
113+
category_archive:
114+
type: liquid
115+
path: /categories/
116+
tag_archive:
117+
type: liquid
118+
path: /tags/

Diff for: _data/navigation.yml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
main:
2+
- title: "Posts"
3+
url: /posts/
4+
- title: "Categories"
5+
url: /categories/
6+
- title: "Tags"
7+
url: /tags/
8+
- title: "About"
9+
url: /about/

Diff for: _pages/404.md

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
title: "Page Not Found"
3+
excerpt: "Page not found. Your pixels are in another canvas."
4+
sitemap: false
5+
permalink: /404.html
6+
---
7+
8+
Sorry, but the page you were trying to view does not exist --- perhaps you can try searching for it below.
9+
10+
<script>
11+
var GOOG_FIXURL_LANG = 'en';
12+
var GOOG_FIXURL_SITE = '{{ site.url }}'
13+
</script>
14+
<script src="https://linkhelp.clients.google.com/tbproxy/lh/wm/fixurl.js">
15+
</script>

Diff for: _pages/about.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
permalink: /about/
3+
title: "About"
4+
---
5+
6+
A software engineer who would like to learn one or two new things daily. Currently, I am learning golang and networking.

Diff for: _pages/category-archive.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
title: "Posts by Category"
3+
layout: categories
4+
permalink: /categories/
5+
author_profile: true
6+
---

Diff for: _pages/tag-archive.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
title: "Posts by Tag"
3+
permalink: /tags/
4+
layout: tags
5+
author_profile: true
6+
---

Diff for: _pages/year-archive.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
title: "Posts by Year"
3+
permalink: /posts/
4+
layout: posts
5+
author_profile: true
6+
---

Diff for: _posts/2020-08-01-my-blog.md

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
title: "First blog"
3+
categories:
4+
- General
5+
tags:
6+
- content
7+
- hugo
8+
- Jekyll
9+
- blog
10+
---
11+
12+
My first blog with Jekyll, thanks to awesome integration with github pages.

Diff for: assets/images/bio-photo.jpg

1.62 KB
Loading

Diff for: index.html

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
# You don't need to edit this file, it's empty on purpose.
3+
# Edit theme's home layout instead if you wanna make some changes
4+
# See: https://jekyllrb.com/docs/themes/#overriding-theme-defaults
5+
layout: home
6+
author_profile: true
7+
---

0 commit comments

Comments
 (0)