diff --git a/docs/README.md b/docs/README.md new file mode 100644 index 0000000..ffe41b5 --- /dev/null +++ b/docs/README.md @@ -0,0 +1,6 @@ +https://jekyllrb.com/ + +https://jekyllrb.com/docs/liquid/tags/ +https://jekyllrb.com/docs/variables/ + +"jekyll serve" to open local server for debugging \ No newline at end of file diff --git a/docs/_data/navigation.yml b/docs/_data/navigation.yml new file mode 100644 index 0000000..38d6dbb --- /dev/null +++ b/docs/_data/navigation.yml @@ -0,0 +1,6 @@ +- name: Home + link: / +- name: About + link: /about.html +- name: Blog + link: /blog.html \ No newline at end of file diff --git a/docs/_includes/navigation.html b/docs/_includes/navigation.html new file mode 100644 index 0000000..d4144dd --- /dev/null +++ b/docs/_includes/navigation.html @@ -0,0 +1,5 @@ + \ No newline at end of file diff --git a/docs/_layouts/default.html b/docs/_layouts/default.html new file mode 100644 index 0000000..2b825a3 --- /dev/null +++ b/docs/_layouts/default.html @@ -0,0 +1,12 @@ + + + + + {{ page.title }} + + + + {% include navigation.html %} + {{ content }} + + \ No newline at end of file diff --git a/docs/_layouts/post.html b/docs/_layouts/post.html new file mode 100644 index 0000000..3419bc2 --- /dev/null +++ b/docs/_layouts/post.html @@ -0,0 +1,7 @@ +--- +layout: default +--- +

{{ page.title }}

+

{{ page.date | date_to_string }} - {{ page.author }}

+ +{{ content }} \ No newline at end of file diff --git a/docs/_posts/2018-08-20-bananas.md b/docs/_posts/2018-08-20-bananas.md new file mode 100644 index 0000000..616587b --- /dev/null +++ b/docs/_posts/2018-08-20-bananas.md @@ -0,0 +1,12 @@ +--- +layout: post +author: jill +--- +A banana is an edible fruit – botanically a berry – produced by several kinds +of large herbaceous flowering plants in the genus Musa. + +In some countries, bananas used for cooking may be called "plantains", +distinguishing them from dessert bananas. The fruit is variable in size, color, +and firmness, but is usually elongated and curved, with soft flesh rich in +starch covered with a rind, which may be green, yellow, red, purple, or brown +when ripe. \ No newline at end of file diff --git a/docs/_posts/2018-08-21-apples.md b/docs/_posts/2018-08-21-apples.md new file mode 100644 index 0000000..1bca2f0 --- /dev/null +++ b/docs/_posts/2018-08-21-apples.md @@ -0,0 +1,11 @@ +--- +layout: post +author: jill +--- +An apple is a sweet, edible fruit produced by an apple tree. + +Apple trees are cultivated worldwide, and are the most widely grown species in +the genus Malus. The tree originated in Central Asia, where its wild ancestor, +Malus sieversii, is still found today. Apples have been grown for thousands of +years in Asia and Europe, and were brought to North America by European +colonists. \ No newline at end of file diff --git a/docs/_posts/2018-08-22-kiwifruit.md b/docs/_posts/2018-08-22-kiwifruit.md new file mode 100644 index 0000000..76912da --- /dev/null +++ b/docs/_posts/2018-08-22-kiwifruit.md @@ -0,0 +1,12 @@ +--- +layout: post +author: ted +--- +Kiwifruit (often abbreviated as kiwi), or Chinese gooseberry is the edible +berry of several species of woody vines in the genus Actinidia. + +The most common cultivar group of kiwifruit is oval, about the size of a large +hen's egg (5–8 cm (2.0–3.1 in) in length and 4.5–5.5 cm (1.8–2.2 in) in +diameter). It has a fibrous, dull greenish-brown skin and bright green or +golden flesh with rows of tiny, black, edible seeds. The fruit has a soft +texture, with a sweet and unique flavor. \ No newline at end of file diff --git a/docs/_posts/2022-09-20-welcome-to-jekyll.markdown b/docs/_posts/2022-09-20-welcome-to-jekyll.markdown deleted file mode 100644 index 63296b3..0000000 --- a/docs/_posts/2022-09-20-welcome-to-jekyll.markdown +++ /dev/null @@ -1,29 +0,0 @@ ---- -layout: post -title: "Welcome to Jekyll!" -date: 2022-09-20 17:18:45 +0200 -categories: jekyll update ---- -You’ll find this post in your `_posts` directory. Go ahead and edit it and re-build the site to see your changes. You can rebuild the site in many different ways, but the most common way is to run `jekyll serve`, which launches a web server and auto-regenerates your site when a file is updated. - -Jekyll requires blog post files to be named according to the following format: - -`YEAR-MONTH-DAY-title.MARKUP` - -Where `YEAR` is a four-digit number, `MONTH` and `DAY` are both two-digit numbers, and `MARKUP` is the file extension representing the format used in the file. After that, include the necessary front matter. Take a look at the source for this post to get an idea about how it works. - -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-docs] for more info on how to get the most out of Jekyll. File all bugs/feature requests at [Jekyll’s GitHub repo][jekyll-gh]. If you have questions, you can ask them on [Jekyll Talk][jekyll-talk]. - -[jekyll-docs]: https://jekyllrb.com/docs/home -[jekyll-gh]: https://github.com/jekyll/jekyll -[jekyll-talk]: https://talk.jekyllrb.com/ diff --git a/docs/_sass/main.scss b/docs/_sass/main.scss new file mode 100644 index 0000000..74411a4 --- /dev/null +++ b/docs/_sass/main.scss @@ -0,0 +1,3 @@ +.current { + color: black; +} \ No newline at end of file diff --git a/docs/about.md b/docs/about.md new file mode 100644 index 0000000..284707b --- /dev/null +++ b/docs/about.md @@ -0,0 +1,7 @@ +--- +layout: default +title: About +--- +# About page + +This page tells you two bit about me. 01 \ No newline at end of file diff --git a/docs/assets/css/styles.scss b/docs/assets/css/styles.scss new file mode 100644 index 0000000..4e445d8 --- /dev/null +++ b/docs/assets/css/styles.scss @@ -0,0 +1,3 @@ +--- +--- +@import "main"; \ No newline at end of file diff --git a/docs/blog.html b/docs/blog.html new file mode 100644 index 0000000..fd0e46e --- /dev/null +++ b/docs/blog.html @@ -0,0 +1,14 @@ +--- +layout: default +title: Blog +--- +

Latest Posts

+ + \ No newline at end of file diff --git a/docs/index.html b/docs/index.html new file mode 100644 index 0000000..9cae6d2 --- /dev/null +++ b/docs/index.html @@ -0,0 +1,8 @@ +--- +layout: default +title: Homepage + +my_number: 5 +--- + +

{{ page.title }}

\ No newline at end of file