Skip to content

Commit 690ee07

Browse files
author
yangjingjing
committed
init blog
1 parent 6c7469c commit 690ee07

File tree

17 files changed

+89
-357
lines changed

17 files changed

+89
-357
lines changed

.gitignore

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1+
_site/
12
*.swp
2-
~*
3+
*.~vsd
4+
\#*\#
35
*~
4-
_site
5-
.sass-cache
6-
.jekyll-cache
7-
.jekyll-metadata
8-
vendor
9-
_notebooks/.ipynb_checkpoints
6+
.DS_Store
7+
Gemfile.lock

404.html

Lines changed: 0 additions & 24 deletions
This file was deleted.

Gemfile

Lines changed: 4 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,4 @@
1-
source "https://rubygems.org"
2-
# Hello! This is where you manage which Jekyll version is used to run.
3-
# When you want to use a different version, change it below, save the
4-
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
5-
#
6-
# bundle exec jekyll serve
7-
#
8-
# This will help ensure the proper Jekyll version is running.
9-
# Happy Jekylling!
10-
# gem "jekyll", "~> 4.0.0"
11-
# This is the default theme for new Jekyll sites. You may change this to anything you like.
12-
gem "minima", "~> 2.5"
13-
# To upgrade, run `bundle update github-pages`.
14-
gem "github-pages", group: :jekyll_plugins
15-
# If you have any plugins, put them here!
16-
group :jekyll_plugins do
17-
gem "jekyll-feed", "~> 0.12"
18-
gem 'jekyll-octicons'
19-
end
20-
21-
gem "jekyll-github-metadata"
22-
23-
# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem
24-
# and associated library.
25-
install_if -> { RUBY_PLATFORM =~ %r!mingw|mswin|java! } do
26-
gem "tzinfo", "~> 1.2"
27-
gem "tzinfo-data"
28-
end
29-
30-
# Performance-booster for watching directories on Windows
31-
gem "wdm", "~> 0.1.1", :install_if => Gem.win_platform?
32-
33-
gem "faraday", "< 1.0"
34-
1+
source 'https://rubygems.org'
2+
gem 'github-pages', group: :jekyll_plugins
3+
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw]
4+
gem 'wdm', '>=0.1.0'

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1-
# Your blog
1+
# 沙漏
2+
3+
我的个人博客:<https://chauby.github.io>,欢迎 Star 和 Fork。
24

3-
This is the repository for your blog! Click *_config.yml* above to get started and fill in the details. Then click *index.md* and edit it to start creating your home page.

_config.yml

Lines changed: 77 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,81 @@
1-
# Welcome to Jekyll!
2-
#
3-
# This config file is meant for settings that affect your whole blog.
4-
#
5-
# If you need help with YAML syntax, here are some quick references for you:
6-
# https://learn-the-web.algonquindesign.ca/topics/markdown-yaml-cheat-sheet/#yaml
7-
# https://learnxinyminutes.com/docs/yaml/
8-
9-
title: 这是我的博客
10-
description: Happy blogging... ❤
11-
github_username: jph00
12-
13-
# Email and twitter are optional:
14-
email: yangjava2014@163.com
15-
twitter_username:
16-
17-
# Set this to true to get LaTeX math equation support
18-
use_math:
19-
20-
# Add your Google Analytics ID here if you have one and want to use it
21-
google_analytics:
22-
23-
# Everything below here can be ignored, unless you want to change the theme entirely
24-
theme: minima
25-
plugins:
26-
- jekyll-feed
27-
- jekyll-gist
28-
- jekyll-octicons
29-
- jekyll-github-metadata
1+
baseurl:
2+
url: https://chauby.github.io
3+
title: Chaobin
4+
subtitle: "The sandglass remembers the time we mislay"
5+
description: "Chauby's personal page"
6+
date_format: "ordinal"
7+
# timezone: Asia/Chengdu
8+
encoding: "utf-8"
9+
side_bar_repo_limit: 5
3010

31-
titles_from_headings:
32-
enabled: true
33-
strip_title: true
34-
collections: true
11+
author: Chauby
12+
organization: UESTC
13+
organization_url: http://www.uestc.edu.cn
14+
github_username: Chauby
15+
location: Chengdu, China
16+
email: chaubyZou@163.com
3517

36-
highlighter: rouge
18+
# Navigation
19+
navs:
20+
-
21+
href: /
22+
label: Homepage
23+
24+
-
25+
href: /cv/
26+
label: CV
27+
28+
-
29+
href: /publications/
30+
label: Publications
31+
32+
-
33+
href: /categories/
34+
label: Blogs
35+
36+
-
37+
href: /wiki/
38+
label: Wiki
39+
40+
# -
41+
# href: /links/
42+
# label: Links
43+
44+
# RSS
45+
subscribe_rss: /feed.xml
46+
47+
# Jekyll
3748
markdown: kramdown
3849
kramdown:
39-
math_engine: katex
40-
input: GFM
41-
auto_ids: true
42-
hard_wrap: false
43-
syntax_highlighter: rouge
50+
input: GFM
51+
highlighter: rouge
52+
paginate: 8
53+
lsi: false
54+
quiet: false
55+
excerpt_separator: "\n\n"
56+
permalink: /:year/:month/:day/:title/
57+
plugins:
58+
- jekyll-github-metadata
59+
- rouge
60+
# - jekyll-html-pipeline
61+
- jekyll-paginate
62+
- jekyll-sitemap
63+
- jekyll-feed
64+
- jemoji
65+
# - jekyll-mentions
66+
collections:
67+
wiki:
68+
output: true
69+
permalink: /wiki/:path/
70+
71+
repository: chauby/chauby.github.io
72+
73+
# Search
74+
simple_jekyll_search:
75+
fulltext: false # full text search enable
76+
limit: 10 # limitation of the search results to show
77+
78+
# Analytics
79+
google:
80+
analytics_id: UA-80669434-1
81+
github: [metadata]

_includes/alert.html

Lines changed: 0 additions & 4 deletions
This file was deleted.

_includes/head.html

Lines changed: 0 additions & 53 deletions
This file was deleted.

_includes/image

Lines changed: 0 additions & 11 deletions
This file was deleted.

_includes/image-r

Lines changed: 0 additions & 11 deletions
This file was deleted.

_includes/info.html

Lines changed: 0 additions & 4 deletions
This file was deleted.

0 commit comments

Comments
 (0)