From 27549b0cdab6330c2f649c3fb23fd8a3d10686d6 Mon Sep 17 00:00:00 2001 From: Rong Zeng Date: Tue, 22 Apr 2014 18:09:34 -0500 Subject: [PATCH 1/8] new file: _config.yml new file: _layouts/default.html new file: _layouts/post.html new file: _posts/2014-04-22-welcome-to-jekyll.markdown new file: css/main.css new file: css/syntax.css new file: index.html --- .gitignore | 1 + _config.yml | 3 + _layouts/default.html | 44 +++++ _layouts/post.html | 9 ++ _posts/2014-04-22-welcome-to-jekyll.markdown | 24 +++ css/main.css | 160 +++++++++++++++++++ css/syntax.css | 60 +++++++ index.html | 13 ++ 8 files changed, 314 insertions(+) create mode 100644 .gitignore create mode 100644 _config.yml create mode 100644 _layouts/default.html create mode 100644 _layouts/post.html create mode 100644 _posts/2014-04-22-welcome-to-jekyll.markdown create mode 100755 css/main.css create mode 100644 css/syntax.css create mode 100644 index.html diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c08f9ad --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +_site \ No newline at end of file diff --git a/_config.yml b/_config.yml new file mode 100644 index 0000000..85daa77 --- /dev/null +++ b/_config.yml @@ -0,0 +1,3 @@ +name: Your New Jekyll Site +markdown: redcarpet +pygments: true diff --git a/_layouts/default.html b/_layouts/default.html new file mode 100644 index 0000000..22e7e3f --- /dev/null +++ b/_layouts/default.html @@ -0,0 +1,44 @@ + + + + + + {{ page.title }} + + + + + + + + + + + +
+ + + {{ content }} + + +
+ + + diff --git a/_layouts/post.html b/_layouts/post.html new file mode 100644 index 0000000..04e3586 --- /dev/null +++ b/_layouts/post.html @@ -0,0 +1,9 @@ +--- +layout: default +--- +

{{ page.title }}

+

{{ page.date | date_to_string }}

+ +
+{{ content }} +
diff --git a/_posts/2014-04-22-welcome-to-jekyll.markdown b/_posts/2014-04-22-welcome-to-jekyll.markdown new file mode 100644 index 0000000..c13d253 --- /dev/null +++ b/_posts/2014-04-22-welcome-to-jekyll.markdown @@ -0,0 +1,24 @@ +--- +layout: post +title: "Welcome to Jekyll!" +date: 2014-04-22 14:46:13 +categories: jekyll update +--- + +You'll find this post in your `_posts` directory - edit this post and re-build (or run with the `-w` switch) to see your changes! +To add new posts, simply add a file in the `_posts` directory that follows the convention: YYYY-MM-DD-name-of-post.ext. + +Jekyll also offers powerful support for code snippets: + +{% highlight ruby %} +def print_hi(name) + puts "Hi, #{name}" +end +print_hi('Tom') +#=> prints 'Hi, Tom' to STDOUT. +{% endhighlight %} + +Check out the [Jekyll docs][jekyll] for more info on how to get the most out of Jekyll. File all bugs/feature requests at [Jekyll's GitHub repo][jekyll-gh]. + +[jekyll-gh]: https://github.com/mojombo/jekyll +[jekyll]: http://jekyllrb.com diff --git a/css/main.css b/css/main.css new file mode 100755 index 0000000..1a2c013 --- /dev/null +++ b/css/main.css @@ -0,0 +1,160 @@ +/*****************************************************************************/ +/* +/* Common +/* +/*****************************************************************************/ + +/* Global Reset */ +* { + margin: 0; + padding: 0; +} + +html, body { height: 100%; } + +body { + background-color: #FFF; + font: 13.34px Helvetica, Arial, sans-serif; + font-size: small; + text-align: center; +} + +h1, h2, h3, h4, h5, h6 { + font-size: 100%; } + +h1 { margin-bottom: 1em; } +p { margin: 1em 0; } + +a { color: #00a; } +a:hover { color: #000; } +a:visited { color: #a0a; } + +/*****************************************************************************/ +/* +/* Home +/* +/*****************************************************************************/ +.posts { + list-style-type: none; + margin-bottom: 2em; +} + +.posts li { + line-height: 1.75em; +} + +.posts span { + color: #aaa; + font-family: Monaco, "Courier New", monospace; + font-size: 80%; +} + +/*****************************************************************************/ +/* +/* Site +/* +/*****************************************************************************/ + +.site { + font-size: 115%; + text-align: justify; + width: 42em; + margin: 3em auto 2em; + line-height: 1.5em; +} + +.header a { + font-weight: bold; + text-decoration: none; +} + +.title { + display: inline-block; + margin-bottom: 2em; +} + +.title a { + color: #a00; +} + +.title a:hover { + color: #000; +} + +.header a.extra { + color: #aaa; + margin-left: 1em; +} + +.header a.extra:hover { + color: #000; +} + +.meta { + color: #aaa; +} + +.footer { + font-size: 80%; + color: #666; + border-top: 4px solid #eee; + margin-top: 2em; + overflow: hidden; +} + +.footer .contact { + float: left; + margin-right: 3em; +} + +.footer .contact a { + color: #8085C1; +} + +.footer .rss { + margin-top: 1.1em; + margin-right: -.2em; + float: right; +} + +.footer .rss img { + border: 0; +} + +/*****************************************************************************/ +/* +/* Posts +/* +/*****************************************************************************/ + +/* standard */ +.post pre { + border: 1px solid #ddd; + background-color: #eef; + padding: 0 .4em; +} + +.post ul, .post ol { + margin-left: 1.35em; +} + +.post code { + border: 1px solid #ddd; + background-color: #eef; + padding: 0 .2em; +} + +.post pre code { + border: none; +} + +/* terminal */ +.post pre.terminal { + border: 1px solid #000; + background-color: #333; + color: #FFF; +} + +.post pre.terminal code { + background-color: #333; +} diff --git a/css/syntax.css b/css/syntax.css new file mode 100644 index 0000000..2774b76 --- /dev/null +++ b/css/syntax.css @@ -0,0 +1,60 @@ +.highlight { background: #ffffff; } +.highlight .c { color: #999988; font-style: italic } /* Comment */ +.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */ +.highlight .k { font-weight: bold } /* Keyword */ +.highlight .o { font-weight: bold } /* Operator */ +.highlight .cm { color: #999988; font-style: italic } /* Comment.Multiline */ +.highlight .cp { color: #999999; font-weight: bold } /* Comment.Preproc */ +.highlight .c1 { color: #999988; font-style: italic } /* Comment.Single */ +.highlight .cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */ +.highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */ +.highlight .gd .x { color: #000000; background-color: #ffaaaa } /* Generic.Deleted.Specific */ +.highlight .ge { font-style: italic } /* Generic.Emph */ +.highlight .gr { color: #aa0000 } /* Generic.Error */ +.highlight .gh { color: #999999 } /* Generic.Heading */ +.highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */ +.highlight .gi .x { color: #000000; background-color: #aaffaa } /* Generic.Inserted.Specific */ +.highlight .go { color: #888888 } /* Generic.Output */ +.highlight .gp { color: #555555 } /* Generic.Prompt */ +.highlight .gs { font-weight: bold } /* Generic.Strong */ +.highlight .gu { color: #aaaaaa } /* Generic.Subheading */ +.highlight .gt { color: #aa0000 } /* Generic.Traceback */ +.highlight .kc { font-weight: bold } /* Keyword.Constant */ +.highlight .kd { font-weight: bold } /* Keyword.Declaration */ +.highlight .kp { font-weight: bold } /* Keyword.Pseudo */ +.highlight .kr { font-weight: bold } /* Keyword.Reserved */ +.highlight .kt { color: #445588; font-weight: bold } /* Keyword.Type */ +.highlight .m { color: #009999 } /* Literal.Number */ +.highlight .s { color: #d14 } /* Literal.String */ +.highlight .na { color: #008080 } /* Name.Attribute */ +.highlight .nb { color: #0086B3 } /* Name.Builtin */ +.highlight .nc { color: #445588; font-weight: bold } /* Name.Class */ +.highlight .no { color: #008080 } /* Name.Constant */ +.highlight .ni { color: #800080 } /* Name.Entity */ +.highlight .ne { color: #990000; font-weight: bold } /* Name.Exception */ +.highlight .nf { color: #990000; font-weight: bold } /* Name.Function */ +.highlight .nn { color: #555555 } /* Name.Namespace */ +.highlight .nt { color: #000080 } /* Name.Tag */ +.highlight .nv { color: #008080 } /* Name.Variable */ +.highlight .ow { font-weight: bold } /* Operator.Word */ +.highlight .w { color: #bbbbbb } /* Text.Whitespace */ +.highlight .mf { color: #009999 } /* Literal.Number.Float */ +.highlight .mh { color: #009999 } /* Literal.Number.Hex */ +.highlight .mi { color: #009999 } /* Literal.Number.Integer */ +.highlight .mo { color: #009999 } /* Literal.Number.Oct */ +.highlight .sb { color: #d14 } /* Literal.String.Backtick */ +.highlight .sc { color: #d14 } /* Literal.String.Char */ +.highlight .sd { color: #d14 } /* Literal.String.Doc */ +.highlight .s2 { color: #d14 } /* Literal.String.Double */ +.highlight .se { color: #d14 } /* Literal.String.Escape */ +.highlight .sh { color: #d14 } /* Literal.String.Heredoc */ +.highlight .si { color: #d14 } /* Literal.String.Interpol */ +.highlight .sx { color: #d14 } /* Literal.String.Other */ +.highlight .sr { color: #009926 } /* Literal.String.Regex */ +.highlight .s1 { color: #d14 } /* Literal.String.Single */ +.highlight .ss { color: #990073 } /* Literal.String.Symbol */ +.highlight .bp { color: #999999 } /* Name.Builtin.Pseudo */ +.highlight .vc { color: #008080 } /* Name.Variable.Class */ +.highlight .vg { color: #008080 } /* Name.Variable.Global */ +.highlight .vi { color: #008080 } /* Name.Variable.Instance */ +.highlight .il { color: #009999 } /* Literal.Number.Integer.Long */ diff --git a/index.html b/index.html new file mode 100644 index 0000000..c726819 --- /dev/null +++ b/index.html @@ -0,0 +1,13 @@ +--- +layout: default +title: Your New Jekyll Site +--- + +
+

Blog Posts

+ +
\ No newline at end of file From cce991d3213b8a3b49c5f118cb7d42d8bdfefb7f Mon Sep 17 00:00:00 2001 From: Rong Zeng Date: Tue, 22 Apr 2014 18:27:54 -0500 Subject: [PATCH 2/8] modified: ../_config.yml modified: ../_layouts/default.html modified: 2014-04-22-welcome-to-jekyll.markdown --- _config.yml | 2 +- _layouts/default.html | 10 +++++----- _posts/2014-04-22-welcome-to-jekyll.markdown | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/_config.yml b/_config.yml index 85daa77..7fd3d9f 100644 --- a/_config.yml +++ b/_config.yml @@ -1,3 +1,3 @@ -name: Your New Jekyll Site +name: JavaScript Oasis markdown: redcarpet pygments: true diff --git a/_layouts/default.html b/_layouts/default.html index 22e7e3f..05c7231 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -26,15 +26,15 @@

{{ site.name }}

diff --git a/_posts/2014-04-22-welcome-to-jekyll.markdown b/_posts/2014-04-22-welcome-to-jekyll.markdown index c13d253..7cde4a5 100644 --- a/_posts/2014-04-22-welcome-to-jekyll.markdown +++ b/_posts/2014-04-22-welcome-to-jekyll.markdown @@ -1,8 +1,8 @@ --- layout: post -title: "Welcome to Jekyll!" +title: "JavaScript Oasis" date: 2014-04-22 14:46:13 -categories: jekyll update +categories: JavaScript --- You'll find this post in your `_posts` directory - edit this post and re-build (or run with the `-w` switch) to see your changes! From 19d64370495a6e7d738aac76ead51c64a5d50492 Mon Sep 17 00:00:00 2001 From: Rong Zeng Date: Tue, 22 Apr 2014 18:37:45 -0500 Subject: [PATCH 3/8] modified: index.html --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index c726819..256ce8e 100644 --- a/index.html +++ b/index.html @@ -1,6 +1,6 @@ --- layout: default -title: Your New Jekyll Site +title: JavaScript Oasis ---
@@ -10,4 +10,4 @@

Blog Posts

  • {{ post.date | date_to_string }} » {{ post.title }}
  • {% endfor %} -
    \ No newline at end of file + From f0c1939889c7cc274c392099a3dd68acbae67a73 Mon Sep 17 00:00:00 2001 From: Rong Zeng Date: Tue, 22 Apr 2014 18:41:50 -0500 Subject: [PATCH 4/8] renamed: _posts/2014-04-22-welcome-to-jekyll.markdown -> _posts/2014-04-22-JavaScript-Oasis.markdown --- ...me-to-jekyll.markdown => 2014-04-22-JavaScript-Oasis.markdown} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename _posts/{2014-04-22-welcome-to-jekyll.markdown => 2014-04-22-JavaScript-Oasis.markdown} (100%) diff --git a/_posts/2014-04-22-welcome-to-jekyll.markdown b/_posts/2014-04-22-JavaScript-Oasis.markdown similarity index 100% rename from _posts/2014-04-22-welcome-to-jekyll.markdown rename to _posts/2014-04-22-JavaScript-Oasis.markdown From d6dcb09ad28dfaf98c7d0553b97c340cd37b4877 Mon Sep 17 00:00:00 2001 From: Rong Zeng Date: Tue, 22 Apr 2014 20:18:20 -0500 Subject: [PATCH 5/8] modified: index.html --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 256ce8e..2fc6324 100644 --- a/index.html +++ b/index.html @@ -7,7 +7,7 @@

    Blog Posts

    From 97b871b85b80eef71b12a67c7ff7f63392b22755 Mon Sep 17 00:00:00 2001 From: Rong Zeng Date: Tue, 22 Apr 2014 20:23:32 -0500 Subject: [PATCH 6/8] modified: _config.yml --- _config.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/_config.yml b/_config.yml index 7fd3d9f..784b1cf 100644 --- a/_config.yml +++ b/_config.yml @@ -1,3 +1,4 @@ +baseurl: /JavaScript-Oasis name: JavaScript Oasis markdown: redcarpet pygments: true From 2ff9dd5a3009566a7fd42216ae09ea538021c9e7 Mon Sep 17 00:00:00 2001 From: Rong Zeng Date: Tue, 22 Apr 2014 20:26:43 -0500 Subject: [PATCH 7/8] modified: _layouts/default.html --- _layouts/default.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_layouts/default.html b/_layouts/default.html index 05c7231..4c1abc3 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -18,7 +18,7 @@
    {{ content }} From 0acefc4ee363c1d04caed487237724885c1ada80 Mon Sep 17 00:00:00 2001 From: Rong Zeng Date: Tue, 22 Apr 2014 20:29:40 -0500 Subject: [PATCH 8/8] modified: _layouts/default.html --- _layouts/default.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_layouts/default.html b/_layouts/default.html index 4c1abc3..8785295 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -17,7 +17,7 @@