diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 42cd8f2..ba4c2c3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,8 +18,12 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 - # When the dist_dir is ready, deploy it to neocities + - name: checkout + uses: actions/checkout@v1 + + - name: build jekyll + uses: victoriadrake/jekyll_cd + - name: Deploy to neocities uses: bcomnes/deploy-to-neocities@v1 with: diff --git a/_config.yml b/_config.yml index ef7ba7c..bfe4ce7 100644 --- a/_config.yml +++ b/_config.yml @@ -1,55 +1,10 @@ -# Welcome to Jekyll! -# -# This config file is meant for settings that affect your whole blog, values -# which you are expected to set up once and rarely edit after that. If you find -# yourself editing this file very often, consider using Jekyll's data files -# feature for the data you need to update frequently. -# -# For technical reasons, this file is *NOT* reloaded automatically when you use -# 'bundle exec jekyll serve'. If you change this file, please restart the server process. -# -# If you need help with YAML syntax, here are some quick references for you: -# https://learn-the-web.algonquindesign.ca/topics/markdown-yaml-cheat-sheet/#yaml -# https://learnxinyminutes.com/docs/yaml/ -# -# Site settings -# These are used to personalize your new site. If you look in the HTML files, -# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on. -# You can create any custom variable you would like, and they will be accessible -# in the templates via {{ site.myvariable }}. +collections: + pages: + output: true -title: Your awesome title -email: your-email@example.com -description: >- # this means to ignore newlines until "baseurl:" - Write an awesome description for your new site here. You can edit this - line in _config.yml. It will appear in your document head meta (for - Google search results) and in your feed.xml site description. -baseurl: "" # the subpath of your site, e.g. /blog -url: "" # the base hostname & protocol for your site, e.g. http://example.com -twitter_username: jekyllrb -github_username: jekyll - -# Build settings -theme: minima -plugins: - - jekyll-feed - -# Exclude from processing. -# The following items will not be processed, by default. -# Any item listed under the `exclude:` key here will be automatically added to -# the internal "default list". -# -# Excluded items can be processed by explicitly listing the directories or -# their entries' file path in the `include:` list. -# -# exclude: -# - .sass-cache/ -# - .jekyll-cache/ -# - gemfiles/ -# - Gemfile -# - Gemfile.lock -# - node_modules/ -# - vendor/bundle/ -# - vendor/cache/ -# - vendor/gems/ -# - vendor/ruby/ +defaults: + - scope: + path: "" + values: + layout: "default" + neko: "true" diff --git a/_data/navigation.yml b/_data/navigation.yml new file mode 100644 index 0000000..208db3b --- /dev/null +++ b/_data/navigation.yml @@ -0,0 +1,6 @@ +- name: Home + link: / +- name: About + link: /about.html +- name: Blog + link: /blog.html diff --git a/_includes/navigation.html b/_includes/navigation.html new file mode 100644 index 0000000..c2c954c --- /dev/null +++ b/_includes/navigation.html @@ -0,0 +1,6 @@ + diff --git a/_includes/neko.html b/_includes/neko.html new file mode 100644 index 0000000..b13c831 --- /dev/null +++ b/_includes/neko.html @@ -0,0 +1,199 @@ + diff --git a/_layouts/default.html b/_layouts/default.html new file mode 100644 index 0000000..98abe16 --- /dev/null +++ b/_layouts/default.html @@ -0,0 +1,15 @@ + + + + + {{ page.title }} + + + + {% if page.neko == "true" %} + {% include neko.html %} + {% endif %} + {% include navigation.html %} + {{ content }} + + diff --git a/_layouts/post.html b/_layouts/post.html new file mode 100644 index 0000000..f4ce98c --- /dev/null +++ b/_layouts/post.html @@ -0,0 +1,8 @@ +--- +layout: default +--- + +

{{ page.title }}

+

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

+ +{{ content }} diff --git a/_pages/1.html b/_pages/1.html new file mode 100644 index 0000000..1fce162 --- /dev/null +++ b/_pages/1.html @@ -0,0 +1,3 @@ +--- +--- +test diff --git a/_posts/2024-07-24-welcome-to-jekyll.markdown b/_posts/2024-07-24-welcome-to-jekyll.markdown deleted file mode 100644 index d65262a..0000000 --- a/_posts/2024-07-24-welcome-to-jekyll.markdown +++ /dev/null @@ -1,29 +0,0 @@ ---- -layout: post -title: "Welcome to Jekyll!" -date: 2024-07-24 14:04:09 -0500 -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/_sass/main.scss b/_sass/main.scss new file mode 100644 index 0000000..154a7db --- /dev/null +++ b/_sass/main.scss @@ -0,0 +1,3 @@ +.current { + color: green +} diff --git a/about.markdown b/about.markdown deleted file mode 100644 index 8b4e0b2..0000000 --- a/about.markdown +++ /dev/null @@ -1,18 +0,0 @@ ---- -layout: page -title: About -permalink: /about/ ---- - -This is the base Jekyll theme. You can find out more info about customizing your Jekyll theme, as well as basic Jekyll usage documentation at [jekyllrb.com](https://jekyllrb.com/) - -You can find the source code for Minima at GitHub: -[jekyll][jekyll-organization] / -[minima](https://github.com/jekyll/minima) - -You can find the source code for Jekyll at GitHub: -[jekyll][jekyll-organization] / -[jekyll](https://github.com/jekyll/jekyll) - - -[jekyll-organization]: https://github.com/jekyll diff --git a/about.md b/about.md new file mode 100644 index 0000000..eddefbe --- /dev/null +++ b/about.md @@ -0,0 +1,7 @@ +--- +layout: default +title: About +--- +# About page + +This page tells you about me. diff --git a/assets/css/styles.scss b/assets/css/styles.scss new file mode 100644 index 0000000..9e5cbc6 --- /dev/null +++ b/assets/css/styles.scss @@ -0,0 +1,3 @@ +--- +--- +@import "main"; diff --git a/blog.html b/blog.html new file mode 100644 index 0000000..695d200 --- /dev/null +++ b/blog.html @@ -0,0 +1,14 @@ +--- +layout: default +title: Blog +--- +

Latest Posts

+ + diff --git a/index.markdown b/index.markdown deleted file mode 100644 index 0671507..0000000 --- a/index.markdown +++ /dev/null @@ -1,6 +0,0 @@ ---- -# Feel free to add content and custom Front Matter to this file. -# To modify the layout, see https://jekyllrb.com/docs/themes/#overriding-theme-defaults - -layout: home ----