Skip to content

Commit 5abfb06

Browse files
committed
Initial commit
1 parent c2d95a8 commit 5abfb06

File tree

259 files changed

+8888
-693
lines changed

Some content is hidden

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

259 files changed

+8888
-693
lines changed

.editorconfig

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# editorconfig.org
2+
root = true
3+
4+
[*]
5+
indent_style = space
6+
indent_size = 2
7+
end_of_line = lf
8+
charset = utf-8
9+
trim_trailing_whitespace = true
10+
insert_final_newline = false
11+
12+
[*.md]
13+
trim_trailing_whitespace = false

.gitattributes

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
assets/fonts/* linguist-vendored
2+
assets/js/main.min.js linguist-vendored
3+
assets/js/lunr/* linguist-vendored
4+
assets/js/plugins/* linguist-vendored
5+
assets/js/vendor/* linguist-vendored
6+
_sass/minimal-mistakes/vendor/* linguist-vendored

.gitignore

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Vim
2+
*~
3+
*.sw[p_]
4+
5+
# Sublime Text
6+
*.sublime-project
7+
*.sublime-workspace
8+
9+
# Ruby Gem
10+
*.gem
11+
.bundle
12+
Gemfile.lock
13+
**/vendor/bundle
14+
15+
# Node.js and NPM
16+
node_modules
17+
npm-debug.log*
18+
package-lock.json
19+
codekit-config.json
20+
21+
# macOS
22+
.DS_Store
23+
24+
# Jekyll generated files
25+
.jekyll-cache
26+
.jekyll-metadata
27+
.sass-cache
28+
_asset_bundler_cache
29+
_site

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

_config.dev.yml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Develop override settings
2+
3+
url: http://localhost:4000
4+
5+
analytics:
6+
provider: false
7+
8+
comments:
9+
disqus:
10+
shortname : "mmistakes-dev"
11+
12+
sass:
13+
style: expanded

_config.yml

+311
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,311 @@
1+
# Welcome to Jekyll!
2+
#
3+
# This config file is meant for settings that affect your entire site, values
4+
# which you are expected to set up once and rarely need to edit after that.
5+
# For technical reasons, this file is *NOT* reloaded automatically when you use
6+
# `jekyll serve`. If you change this file, please restart the server process.
7+
8+
remote_theme : "mmistakes/[email protected]"
9+
10+
minimal_mistakes_skin : "air" # "air", "aqua", "contrast", "dark", "dirt", "neon", "mint", "plum", "sunrise"
11+
12+
# Site Settings
13+
locale : "en-US"
14+
title : "MatchZoo"
15+
title_separator : "-"
16+
subtitle : "Awesome Neural Matching Toolkit"
17+
name : &name "Neural Text Matching Community" # &name is a YAML anchor which can be *referenced later
18+
description : &description "Facilitating the design, comparison and sharing of deep text matching models."
19+
url : https://ntmc-community.github.io # the base hostname & protocol for your site e.g. "https://mmistakes.github.io"
20+
baseurl : # the subpath of your site, e.g. "/blog"
21+
repository : "NTMC-Community/NTMC-Community.github.io"
22+
teaser : # path of fallback teaser image, e.g. "/assets/images/500x300.png"
23+
logo : # path of logo image to display in the masthead, e.g. "/assets/images/88x88.png"
24+
masthead_title : # overrides the website title displayed in the masthead, use " " for no title
25+
# breadcrumbs : false # true, false (default)
26+
words_per_minute : 200
27+
comments:
28+
provider : "false" # false (default), "disqus", "discourse", "facebook", "staticman_v2", "staticman", "utterances", "custom"
29+
disqus:
30+
shortname :
31+
discourse:
32+
server : # https://meta.discourse.org/t/embedding-discourse-comments-via-javascript/31963 , e.g.: meta.discourse.org
33+
facebook:
34+
# https://developers.facebook.com/docs/plugins/comments
35+
appid :
36+
num_posts : # 5 (default)
37+
colorscheme : # "light" (default), "dark"
38+
utterances:
39+
theme : # "github-light" (default), "github-dark"
40+
issue_term : # "pathname" (default)
41+
reCaptcha:
42+
siteKey : # "6LdRBykTAAAAAFB46MnIu6ixuxwu9W1ihFF8G60Q"
43+
secret : # "PznnZGu3P6eTHRPLORniSq+J61YEf+A9zmColXDM5icqF49gbunH51B8+h+i2IvewpuxtA9TFoK68TuhUp/X3YKmmqhXasegHYabY50fqF9nJh9npWNhvITdkQHeaOqnFXUIwxfiEeUt49Yoa2waRR7a5LdRAP3SVM8hz0KIBT4="
44+
45+
atom_feed:
46+
path : # blank (default) uses feed.xml
47+
48+
search : true # true, false (default)
49+
search_full_content : true # true, false (default)
50+
search_provider : algolia # lunr (default), algolia
51+
algolia:
52+
application_id : QB6HVGBSBA # YOUR_APPLICATION_ID
53+
index_name : minimal_mistakes # YOUR_INDEX_NAME
54+
search_only_api_key : 9d5014e5bbc77372547bce778dfa5663 # YOUR_SEARCH_ONLY_API_KEY
55+
powered_by : true # true (default), false
56+
files_to_exclude:
57+
58+
# SEO Related
59+
google_site_verification : # Replace this with your ID, or delete
60+
bing_site_verification :
61+
yandex_site_verification :
62+
naver_site_verification :
63+
64+
# Social Sharing
65+
twitter:
66+
username :
67+
facebook:
68+
username :
69+
app_id :
70+
publisher :
71+
og_image : # Open Graph/Twitter default site image
72+
# For specifying social profiles, used in _includes/seo.html
73+
# - https://developers.google.com/structured-data/customize/social-profiles
74+
social:
75+
type : # Person or Organization (defaults to Person)
76+
name : # If the user or organization name differs from the site's name
77+
links: # An array of links to social media profiles
78+
79+
# Analytics
80+
analytics:
81+
provider : "google-universal" # false (default), "google", "google-universal", "google-gtag", "custom"
82+
google:
83+
tracking_id : "UA-2011187-3" # Replace this with your ID, or delete
84+
anonymize_ip : true
85+
86+
87+
# Site Author
88+
author:
89+
name : *name # *name is a YAML reference pointing to the &anchor earlier
90+
avatar :
91+
bio :
92+
location :
93+
links:
94+
- label: "Website"
95+
icon: "fas fa-fw fa-link"
96+
url: "https://ntmc-community.github.io"
97+
- label: "E-mail"
98+
icon: "fas fa-fw fa-envelope-square"
99+
url: "mailto:[email protected]"
100+
- label: "GitHub"
101+
icon: "fab fa-fw fa-github"
102+
url: "https://github.com/NTMC-Community"
103+
104+
105+
# Site Footer
106+
footer:
107+
links:
108+
- label: "Website"
109+
icon: "fas fa-fw fa-link"
110+
url: "https://ntmc-community.github.io"
111+
- label: "E-mail"
112+
icon: "fas fa-fw fa-envelope-square"
113+
114+
- label: "GitHub"
115+
icon: "fab fa-fw fa-github"
116+
url: "https://github.com/NTMC-Community"
117+
118+
119+
# Reading Files
120+
include:
121+
- .htaccess
122+
- _pages
123+
- _resources
124+
- _tutorials
125+
exclude:
126+
- "*.sublime-project"
127+
- "*.sublime-workspace"
128+
- vendor
129+
- .asset-cache
130+
- .bundle
131+
- .jekyll-assets-cache
132+
- .sass-cache
133+
- assets/js/plugins
134+
- assets/js/_main.js
135+
- assets/js/vendor
136+
- Capfile
137+
- CHANGELOG
138+
- config
139+
- Gemfile
140+
- Gruntfile.js
141+
- gulpfile.js
142+
- LICENSE
143+
- log
144+
- node_modules
145+
- package.json
146+
- Rakefile
147+
- README
148+
- tmp
149+
keep_files:
150+
- .git
151+
- .svn
152+
encoding: "utf-8"
153+
markdown_ext: "markdown,mkdown,mkdn,mkd,md"
154+
155+
156+
# Conversion
157+
markdown: kramdown
158+
highlighter: rouge
159+
lsi: false
160+
excerpt_separator: "\n\n"
161+
incremental: false
162+
163+
164+
# Markdown Processing
165+
kramdown:
166+
input: GFM
167+
hard_wrap: false
168+
auto_ids: true
169+
footnote_nr: 1
170+
entity_output: as_char
171+
toc_levels: 1..6
172+
smart_quotes: lsquo,rsquo,ldquo,rdquo
173+
enable_coderay: false
174+
175+
176+
# Collections
177+
collections:
178+
docs:
179+
output: true
180+
permalink: /:collection/:path/
181+
tutorials:
182+
output: true
183+
permalink: /:collection/:path/
184+
resources:
185+
output: true
186+
permalink: /:collection/:path/
187+
188+
# Defaults
189+
defaults:
190+
# _posts
191+
- scope:
192+
path: ""
193+
type: posts
194+
values:
195+
layout: single
196+
author_profile: false
197+
read_time: true
198+
comments: true
199+
share: true
200+
related: true
201+
# _pages
202+
- scope:
203+
path: "_pages"
204+
type: pages
205+
values:
206+
layout: single
207+
author_profile: false
208+
# _docs
209+
- scope:
210+
path: ""
211+
type: docs
212+
values:
213+
layout: single
214+
read_time: false
215+
author_profile: false
216+
share: false
217+
comments: false
218+
sidebar:
219+
nav: "docs"
220+
# _resources
221+
- scope:
222+
path: "_tutorials"
223+
type: tutorials
224+
values:
225+
layout: single
226+
read_time: false
227+
author_profile: false
228+
share: false
229+
comments: false
230+
sidebar:
231+
nav: "tutorials"
232+
# _resources
233+
- scope:
234+
path: "_resources"
235+
type: resources
236+
values:
237+
layout: single
238+
read_time: false
239+
author_profile: false
240+
share: false
241+
comments: false
242+
sidebar:
243+
nav: "resources"
244+
245+
# Sass/SCSS
246+
sass:
247+
sass_dir: _sass
248+
style: compressed # http://sass-lang.com/documentation/file.SASS_REFERENCE.html#output_style
249+
250+
251+
# Outputting
252+
permalink: /:categories/:title/
253+
# paginate: 5 # amount of posts to show
254+
# paginate_path: /page:num/
255+
timezone: Asia/Shanghai # https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
256+
257+
258+
# Plugins (previously gems:)
259+
plugins:
260+
- jekyll-paginate
261+
- jekyll-sitemap
262+
- jekyll-gist
263+
- jekyll-feed
264+
- jemoji
265+
- jekyll-include-cache
266+
267+
# mimic GitHub Pages with --safe
268+
whitelist:
269+
- jekyll-paginate
270+
- jekyll-sitemap
271+
- jekyll-gist
272+
- jekyll-feed
273+
- jemoji
274+
- jekyll-include-cache
275+
276+
277+
# Archives
278+
# Type
279+
# - GitHub Pages compatible archive pages built with Liquid ~> type: liquid (default)
280+
# - Jekyll Archives plugin archive pages ~> type: jekyll-archives
281+
# Path (examples)
282+
# - Archive page should exist at path when using Liquid method or you can
283+
# expect broken links (especially with breadcrumbs enabled)
284+
# - <base_path>/tags/my-awesome-tag/index.html ~> path: /tags/
285+
# - <base_path>/categories/my-awesome-category/index.html ~> path: /categories/
286+
# - <base_path>/my-awesome-category/index.html ~> path: /
287+
category_archive:
288+
type: liquid
289+
path: /categories/
290+
tag_archive:
291+
type: liquid
292+
path: /tags/
293+
# https://github.com/jekyll/jekyll-archives
294+
# jekyll-archives:
295+
# enabled:
296+
# - categories
297+
# - tags
298+
# layouts:
299+
# category: archive-taxonomy
300+
# tag: archive-taxonomy
301+
# permalinks:
302+
# category: /categories/:name/
303+
# tag: /tags/:name/
304+
305+
306+
# HTML Compression
307+
# - http://jch.penibelst.de/
308+
compress_html:
309+
clippings: all
310+
ignore:
311+
envs: development

0 commit comments

Comments
 (0)