-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconf.js
83 lines (81 loc) · 2.5 KB
/
conf.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
var blogConfig = {
"adminMode": "false", //put true for development (add features for admin)
"name":"Minimalist Blog",
"description":"Minimalist Blog generator for Github Pages",
"email": "[email protected]",
"logo": "assets/gitblog.gif",
"theme": "default",
"social": {
"disqus": "minimalist-blog",
"twitter_account": "thibaud_arnault"
},
"authors": [
{
"username": "thyb",
"fullname": "Thibaud Arnault",
"email": "[email protected]",
"gravatar": "4bda4cba273a73659a518e5ab26fc1bb",
"job": "CEO & Co-founder of Webshell.io & OAuth.io",
"bio": "During a weekend, I wanted to make a blog easy to configure, easy to spread, with awesome collaboration tools. What could be better than a blog on top of Github using Github Pages? I think it's a new simple way for developers to blog. Now, you can use versioning, collaboration and hosting efficiently with Github & Github Pages for your blog. I just made a kind of skeleton. Have fun using it :)"
}
],
"menu": [
{
"url": "#/",
"text": "Home"
},
{
"url": "#/pages/me",
"text": "About me"
}
],
"sidebar": [
"tags.html",
"forkme.html",
"follow.html"
],
"sortArticle": "desc",
"limitPerPage": 5,
"articles": [
{
"id": "welcome",
"title": "Welcome to Minimalist Blog",
"summary": "Minimalist Blog generator for Github Pages, you only have to add markdown files to create new articles like this one",
"img": {
"src": "",
"pos": "center"
},
"date": "7-25-2013",
"author": "thyb",
"format": "markdown",
"tags": ["welcome"]
},
{
"id": "features",
"title": "Features available",
"summary": "Minimalist Blog is really small and full of feature: articles, pages, menu, sidebar, theme",
"date": "7-25-2013",
"author": "thyb",
"format": "markdown",
"tags": ["welcome"]
},
{
"id": "install-github",
"title": "Install your blog in 1 minute on your Github account",
"summary": "To install this blog on your account, you just have to fork this repository in <code>gh-pages</code> branch",
"date": "7-26-2013",
"author": "thyb",
"format": "markdown",
"tags": ["install"]
},
{
"id": "install-local",
"title": "Install in local using Jekyll",
"summary": "You can clone this repository and modify it as your need and host it using <code>grunt server</code> command. Then you can access your blog at <a href=\"http://localhost:4000\">http://localhost:4000</a>",
"date": "7-26-2013",
"author": "thyb",
"format": "markdown",
"tags": ["install"]
}
]
}