From a4b52d677cb4633e4a86cf84a46f8a5c02e07710 Mon Sep 17 00:00:00 2001 From: sylv256 Date: Fri, 28 Jun 2024 03:19:19 -0400 Subject: [PATCH] various housekeeping, improve templating, DRY out code, fix gemfile so it uses github-pages --- Gemfile | 24 +- Gemfile.lock | 275 +++++++++++++++--- _config.yml | 22 +- _includes/footer.html | 10 + _includes/head.html | 17 ++ _includes/navbar.html | 19 ++ _layouts/blog.html | 77 +---- _layouts/default.html | 7 + _layouts/generic.html | 56 +--- _layouts/index.html | 86 ++---- _layouts/post.html | 11 + ...post.markdown => 2024-06-26-first-post.md} | 7 +- about.markdown | 18 -- blog.markdown => blog.md | 0 css/styles.css | 30 +- develop.markdown => develop.md | 2 +- download.markdown => download.md | 2 +- index.markdown => index.md | 3 +- 18 files changed, 401 insertions(+), 265 deletions(-) create mode 100644 _includes/footer.html create mode 100644 _includes/head.html create mode 100644 _includes/navbar.html create mode 100644 _layouts/default.html create mode 100644 _layouts/post.html rename _posts/{2024-06-26-first-post.markdown => 2024-06-26-first-post.md} (67%) delete mode 100644 about.markdown rename blog.markdown => blog.md (100%) rename develop.markdown => develop.md (97%) rename download.markdown => download.md (96%) rename index.markdown => index.md (97%) diff --git a/Gemfile b/Gemfile index 1bccf29..62e340c 100644 --- a/Gemfile +++ b/Gemfile @@ -1,4 +1,9 @@ source "https://rubygems.org" +# To update to the latest github dependencies run: `bundle update` +# To list current versions: `bundle exec github-pages versions` +# Check github versions: https://pages.github.com/versions/ +gem "github-pages", group: :jekyll_plugins + # Hello! This is where you manage which Jekyll version is used to run. # When you want to use a different version, change it below, save the # file and run `bundle install`. Run Jekyll with `bundle exec`, like so: @@ -7,27 +12,28 @@ source "https://rubygems.org" # # This will help ensure the proper Jekyll version is running. # Happy Jekylling! -gem "jekyll", "~> 4.3.1" +#gem "jekyll", "~> 2.4.0" # This is the default theme for new Jekyll sites. You may change this to anything you like. -gem "minima", "~> 2.5" +gem "minima" # If you want to use GitHub Pages, remove the "gem "jekyll"" above and # uncomment the line below. To upgrade, run `bundle update github-pages`. # gem "github-pages", group: :jekyll_plugins # If you have any plugins, put them here! group :jekyll_plugins do - gem "jekyll-feed", "~> 0.12" + gem "jekyll-feed" + gem 'jekyll-sitemap' end # Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem # and associated library. -platforms :mingw, :x64_mingw, :mswin, :jruby do - gem "tzinfo", ">= 1", "< 3" +install_if -> { RUBY_PLATFORM =~ %r!mingw|mswin|java! } do + gem "tzinfo", "~> 1.2" gem "tzinfo-data" end # Performance-booster for watching directories on Windows -gem "wdm", "~> 0.1.1", :platforms => [:mingw, :x64_mingw, :mswin] +gem "wdm", "~> 0.1.1", :install_if => Gem.win_platform? + +gem "webrick", "~> 1.8" -# Lock `http_parser.rb` gem to `v0.6.x` on JRuby builds since newer versions of the gem -# do not have a Java counterpart. -gem "http_parser.rb", "~> 0.6.0", :platforms => [:jruby] +gem "json" diff --git a/Gemfile.lock b/Gemfile.lock index 0dd3681..22ba130 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,79 +1,274 @@ GEM remote: https://rubygems.org/ specs: - addressable (2.8.1) - public_suffix (>= 2.0.2, < 6.0) + activesupport (6.0.6.1) + concurrent-ruby (~> 1.0, >= 1.0.2) + i18n (>= 0.7, < 2) + minitest (~> 5.1) + tzinfo (~> 1.1) + zeitwerk (~> 2.2, >= 2.2.2) + addressable (2.8.7) + public_suffix (>= 2.0.2, < 7.0) + coffee-script (2.4.1) + coffee-script-source + execjs + coffee-script-source (1.12.2) colorator (1.1.0) - concurrent-ruby (1.1.6) - em-websocket (0.5.1) + commonmarker (0.23.10) + concurrent-ruby (1.3.3) + dnsruby (1.72.1) + simpleidn (~> 0.2.1) + em-websocket (0.5.3) eventmachine (>= 0.12.9) - http_parser.rb (~> 0.6.0) - eventmachine (1.3.0.dev.1) - ffi (1.15.5) + http_parser.rb (~> 0) + ethon (0.16.0) + ffi (>= 1.15.0) + eventmachine (1.2.7) + execjs (2.9.1) + faraday (2.9.2) + faraday-net_http (>= 2.0, < 3.2) + faraday-net_http (3.1.0) + net-http + ffi (1.17.0-x64-mingw-ucrt) forwardable-extended (2.6.0) - http_parser.rb (0.6.0) - i18n (1.10.0) + gemoji (4.1.0) + github-pages (231) + github-pages-health-check (= 1.18.2) + jekyll (= 3.9.5) + jekyll-avatar (= 0.8.0) + jekyll-coffeescript (= 1.2.2) + jekyll-commonmark-ghpages (= 0.4.0) + jekyll-default-layout (= 0.1.5) + jekyll-feed (= 0.17.0) + jekyll-gist (= 1.5.0) + jekyll-github-metadata (= 2.16.1) + jekyll-include-cache (= 0.2.1) + jekyll-mentions (= 1.6.0) + jekyll-optional-front-matter (= 0.3.2) + jekyll-paginate (= 1.1.0) + jekyll-readme-index (= 0.3.0) + jekyll-redirect-from (= 0.16.0) + jekyll-relative-links (= 0.6.1) + jekyll-remote-theme (= 0.4.3) + jekyll-sass-converter (= 1.5.2) + jekyll-seo-tag (= 2.8.0) + jekyll-sitemap (= 1.4.0) + jekyll-swiss (= 1.0.0) + jekyll-theme-architect (= 0.2.0) + jekyll-theme-cayman (= 0.2.0) + jekyll-theme-dinky (= 0.2.0) + jekyll-theme-hacker (= 0.2.0) + jekyll-theme-leap-day (= 0.2.0) + jekyll-theme-merlot (= 0.2.0) + jekyll-theme-midnight (= 0.2.0) + jekyll-theme-minimal (= 0.2.0) + jekyll-theme-modernist (= 0.2.0) + jekyll-theme-primer (= 0.6.0) + jekyll-theme-slate (= 0.2.0) + jekyll-theme-tactile (= 0.2.0) + jekyll-theme-time-machine (= 0.2.0) + jekyll-titles-from-headings (= 0.5.3) + jemoji (= 0.13.0) + kramdown (= 2.4.0) + kramdown-parser-gfm (= 1.1.0) + liquid (= 4.0.4) + mercenary (~> 0.3) + minima (= 2.5.1) + nokogiri (>= 1.13.6, < 2.0) + rouge (= 3.30.0) + terminal-table (~> 1.4) + github-pages-health-check (1.18.2) + addressable (~> 2.3) + dnsruby (~> 1.60) + octokit (>= 4, < 8) + public_suffix (>= 3.0, < 6.0) + typhoeus (~> 1.3) + html-pipeline (2.14.3) + activesupport (>= 2) + nokogiri (>= 1.4) + http_parser.rb (0.8.0) + i18n (1.14.5) concurrent-ruby (~> 1.0) - jekyll (4.3.1) + jekyll (3.9.5) addressable (~> 2.4) colorator (~> 1.0) em-websocket (~> 0.5) - i18n (~> 1.0) - jekyll-sass-converter (>= 2.0, < 4.0) + i18n (>= 0.7, < 2) + jekyll-sass-converter (~> 1.0) jekyll-watch (~> 2.0) - kramdown (~> 2.3, >= 2.3.1) - kramdown-parser-gfm (~> 1.0) - liquid (>= 4.0, < 6) - mercenary (>= 0.3.6, < 0.5) + kramdown (>= 1.17, < 3) + liquid (~> 4.0) + mercenary (~> 0.3.3) pathutil (~> 0.9) - rouge (>= 3.0, < 5.0) - terminal-table (>= 1.8, < 4.0) - webrick (~> 1.7) + rouge (>= 1.7, < 4) + safe_yaml (~> 1.0) + jekyll-avatar (0.8.0) + jekyll (>= 3.0, < 5.0) + jekyll-coffeescript (1.2.2) + coffee-script (~> 2.2) + coffee-script-source (~> 1.12) + jekyll-commonmark (1.4.0) + commonmarker (~> 0.22) + jekyll-commonmark-ghpages (0.4.0) + commonmarker (~> 0.23.7) + jekyll (~> 3.9.0) + jekyll-commonmark (~> 1.4.0) + rouge (>= 2.0, < 5.0) + jekyll-default-layout (0.1.5) + jekyll (>= 3.0, < 5.0) jekyll-feed (0.17.0) jekyll (>= 3.7, < 5.0) - jekyll-sass-converter (2.2.0) - sassc (> 2.0.1, < 3.0) + jekyll-gist (1.5.0) + octokit (~> 4.2) + jekyll-github-metadata (2.16.1) + jekyll (>= 3.4, < 5.0) + octokit (>= 4, < 7, != 4.4.0) + jekyll-include-cache (0.2.1) + jekyll (>= 3.7, < 5.0) + jekyll-mentions (1.6.0) + html-pipeline (~> 2.3) + jekyll (>= 3.7, < 5.0) + jekyll-optional-front-matter (0.3.2) + jekyll (>= 3.0, < 5.0) + jekyll-paginate (1.1.0) + jekyll-readme-index (0.3.0) + jekyll (>= 3.0, < 5.0) + jekyll-redirect-from (0.16.0) + jekyll (>= 3.3, < 5.0) + jekyll-relative-links (0.6.1) + jekyll (>= 3.3, < 5.0) + jekyll-remote-theme (0.4.3) + addressable (~> 2.0) + jekyll (>= 3.5, < 5.0) + jekyll-sass-converter (>= 1.0, <= 3.0.0, != 2.0.0) + rubyzip (>= 1.3.0, < 3.0) + jekyll-sass-converter (1.5.2) + sass (~> 3.4) jekyll-seo-tag (2.8.0) jekyll (>= 3.8, < 5.0) + jekyll-sitemap (1.4.0) + jekyll (>= 3.7, < 5.0) + jekyll-swiss (1.0.0) + jekyll-theme-architect (0.2.0) + jekyll (> 3.5, < 5.0) + jekyll-seo-tag (~> 2.0) + jekyll-theme-cayman (0.2.0) + jekyll (> 3.5, < 5.0) + jekyll-seo-tag (~> 2.0) + jekyll-theme-dinky (0.2.0) + jekyll (> 3.5, < 5.0) + jekyll-seo-tag (~> 2.0) + jekyll-theme-hacker (0.2.0) + jekyll (> 3.5, < 5.0) + jekyll-seo-tag (~> 2.0) + jekyll-theme-leap-day (0.2.0) + jekyll (> 3.5, < 5.0) + jekyll-seo-tag (~> 2.0) + jekyll-theme-merlot (0.2.0) + jekyll (> 3.5, < 5.0) + jekyll-seo-tag (~> 2.0) + jekyll-theme-midnight (0.2.0) + jekyll (> 3.5, < 5.0) + jekyll-seo-tag (~> 2.0) + jekyll-theme-minimal (0.2.0) + jekyll (> 3.5, < 5.0) + jekyll-seo-tag (~> 2.0) + jekyll-theme-modernist (0.2.0) + jekyll (> 3.5, < 5.0) + jekyll-seo-tag (~> 2.0) + jekyll-theme-primer (0.6.0) + jekyll (> 3.5, < 5.0) + jekyll-github-metadata (~> 2.9) + jekyll-seo-tag (~> 2.0) + jekyll-theme-slate (0.2.0) + jekyll (> 3.5, < 5.0) + jekyll-seo-tag (~> 2.0) + jekyll-theme-tactile (0.2.0) + jekyll (> 3.5, < 5.0) + jekyll-seo-tag (~> 2.0) + jekyll-theme-time-machine (0.2.0) + jekyll (> 3.5, < 5.0) + jekyll-seo-tag (~> 2.0) + jekyll-titles-from-headings (0.5.3) + jekyll (>= 3.3, < 5.0) jekyll-watch (2.2.1) listen (~> 3.0) + jemoji (0.13.0) + gemoji (>= 3, < 5) + html-pipeline (~> 2.2) + jekyll (>= 3.0, < 5.0) + json (2.7.2) kramdown (2.4.0) rexml kramdown-parser-gfm (1.1.0) kramdown (~> 2.0) - liquid (5.4.0) - listen (3.7.0) + liquid (4.0.4) + listen (3.9.0) + rb-fsevent (~> 0.10, >= 0.10.3) rb-inotify (~> 0.9, >= 0.9.10) - mercenary (0.4.0) + mercenary (0.3.6) minima (2.5.1) jekyll (>= 3.5, < 5.0) jekyll-feed (~> 0.9) jekyll-seo-tag (~> 2.1) - pathutil (0.16.1) + minitest (5.24.0) + net-http (0.4.1) + uri + nokogiri (1.16.6-x64-mingw-ucrt) + racc (~> 1.4) + octokit (4.25.1) + faraday (>= 1, < 3) + sawyer (~> 0.9) + pathutil (0.16.2) forwardable-extended (~> 2.6) - public_suffix (4.0.6) - rb-inotify (0.10.1) + public_suffix (5.1.1) + racc (1.8.0) + rb-fsevent (0.11.2) + rb-inotify (0.11.1) ffi (~> 1.0) - rexml (3.2.5) + rexml (3.3.1) + strscan rouge (3.30.0) - sassc (2.4.0) - ffi (~> 1.9) - terminal-table (3.0.2) - unicode-display_width (>= 1.1.1, < 3) - unicode-display_width (1.6.1) + rubyzip (2.3.2) + safe_yaml (1.0.5) + sass (3.7.4) + sass-listen (~> 4.0.0) + sass-listen (4.0.0) + rb-fsevent (~> 0.9, >= 0.9.4) + rb-inotify (~> 0.9, >= 0.9.7) + sawyer (0.9.2) + addressable (>= 2.3.5) + faraday (>= 0.17.3, < 3) + simpleidn (0.2.3) + strscan (3.1.0) + terminal-table (1.8.0) + unicode-display_width (~> 1.1, >= 1.1.1) + thread_safe (0.3.6) + typhoeus (1.4.1) + ethon (>= 0.9.0) + tzinfo (1.2.11) + thread_safe (~> 0.1) + tzinfo-data (1.2024.1) + tzinfo (>= 1.0.0) + unicode-display_width (1.8.0) + uri (0.13.0) + wdm (0.1.1) webrick (1.8.1) + zeitwerk (2.6.16) PLATFORMS - x86_64-linux + x64-mingw-ucrt DEPENDENCIES - http_parser.rb (~> 0.6.0) - jekyll (~> 4.3.1) - jekyll-feed (~> 0.12) - minima (~> 2.5) - tzinfo (>= 1, < 3) + github-pages + jekyll-feed + jekyll-sitemap + json + minima + tzinfo (~> 1.2) tzinfo-data wdm (~> 0.1.1) + webrick (~> 1.8) BUNDLED WITH - 2.3.15 + 2.5.14 diff --git a/_config.yml b/_config.yml index b2fe4ed..978c23a 100644 --- a/_config.yml +++ b/_config.yml @@ -18,19 +18,37 @@ # You can create any custom variable you would like, and they will be accessible # in the templates via {{ site.myvariable }}. -timezone: UTC title: MuonMC email: admin@muonmc.org description: >- # this means to ignore newlines until "baseurl:" MuonMC is a Minecraft modloader focused on stability and performance. baseurl: "" # the subpath of your site, e.g. /blog -url: "" # the base hostname & protocol for your site, e.g. http://example.com +url: "https://muonmc.org" # the base hostname & protocol for your site, e.g. http://example.com +markdown: kramdown +timezone: America/New_York + +theme_config: + date_format: "%-d %B %Y %H:%M:%S %Z" # Build settings theme: minima plugins: - jekyll-feed +defaults: + - + scope: + path: "" + type: "posts" + values: + permalink: /blog/:categories/:year/:month/:day/:slug/ + author: "MuonMC" + - + scope: + path: "*.md" + values: + layout: default + # 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 diff --git a/_includes/footer.html b/_includes/footer.html new file mode 100644 index 0000000..3b591d4 --- /dev/null +++ b/_includes/footer.html @@ -0,0 +1,10 @@ + \ No newline at end of file diff --git a/_includes/head.html b/_includes/head.html new file mode 100644 index 0000000..4a29e85 --- /dev/null +++ b/_includes/head.html @@ -0,0 +1,17 @@ + + + + + {{ page.title }} + + + + + + + + + + + + \ No newline at end of file diff --git a/_includes/navbar.html b/_includes/navbar.html new file mode 100644 index 0000000..dabe16b --- /dev/null +++ b/_includes/navbar.html @@ -0,0 +1,19 @@ + \ No newline at end of file diff --git a/_layouts/blog.html b/_layouts/blog.html index 5c5a7bb..bfea1b4 100644 --- a/_layouts/blog.html +++ b/_layouts/blog.html @@ -1,62 +1,15 @@ - - - - - - - {{ page.title }} - - - - - - - - - - - - - - -
- - - - Blog - - - - Download - - - - Develop - -
- -
-
- {% for post in site.posts %} -

{{ post.title }}

-

Publication date: {{ post.date }}

- {% endfor %} -
-
- - - - \ No newline at end of file +--- +layout: default +--- + +
+

Latest Posts

+ {% for post in site.posts %} +

{{ post.title }}

+
+ Date +

{{- post.date | date: site.theme_config.date_format -}}

+
+

{{ post.excerpt | smartify }}

+ {% endfor %} +
\ No newline at end of file diff --git a/_layouts/default.html b/_layouts/default.html new file mode 100644 index 0000000..fd38f61 --- /dev/null +++ b/_layouts/default.html @@ -0,0 +1,7 @@ +--- +layout: generic +--- + +
+ {{ content }} +
\ No newline at end of file diff --git a/_layouts/generic.html b/_layouts/generic.html index e68c807..8bf07b0 100644 --- a/_layouts/generic.html +++ b/_layouts/generic.html @@ -1,57 +1,11 @@ - - - - - - {{ page.title }} - - - - - - - - - - - - - + + {%- include head.html -%} -
- - - - Blog - - - - Download - - - - Develop - -
- -
- {{ content }} -
+ {%- include navbar.html -%} - + {%- include footer.html -%} \ No newline at end of file diff --git a/_layouts/index.html b/_layouts/index.html index 2e8f02e..f003998 100644 --- a/_layouts/index.html +++ b/_layouts/index.html @@ -1,68 +1,18 @@ - - - - - - - {{ page.title }} - - - - - - - - - - - - - - -
- - - - Blog - - - - Download - - - - Develop - -
- -
- MuonMC thematic background image -
-

The modloader that works.

- - Download - - Develop -
-
- -
- {{ content }} -
- - - - \ No newline at end of file +--- +layout: generic +--- + +
+ MuonMC thematic background image +
+

The modloader that works.

+ + Download + + Develop +
+
+ +
+ {{ content }} +
\ No newline at end of file diff --git a/_layouts/post.html b/_layouts/post.html new file mode 100644 index 0000000..5be3b18 --- /dev/null +++ b/_layouts/post.html @@ -0,0 +1,11 @@ +--- +layout: default +--- + +

{{ page.title | smartify }}

+{%- assign post = page -%} +{{ page.date | date: site.theme_config.date_format }} - {{ page.author | default: "MuonMC" | smartify }} + +
+ {{ content | smartify }} +
\ No newline at end of file diff --git a/_posts/2024-06-26-first-post.markdown b/_posts/2024-06-26-first-post.md similarity index 67% rename from _posts/2024-06-26-first-post.markdown rename to _posts/2024-06-26-first-post.md index f5038cd..2a486bb 100644 --- a/_posts/2024-06-26-first-post.markdown +++ b/_posts/2024-06-26-first-post.md @@ -1,10 +1,7 @@ --- -layout: generic -title: "First blog post" -date: 2024-06-27 00:00:00 -0000 +title: "First blog post" +date: 2024-06-27 00:00:00 -0000 categories: update --- -# Our first blog post - Hello, everyone! Thank you for visiting our website. The project is in its early stages of development, so you won't see much going on, like, at all. But thanks for your patience! \ No newline at end of file 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/blog.markdown b/blog.md similarity index 100% rename from blog.markdown rename to blog.md diff --git a/css/styles.css b/css/styles.css index bc81fee..e6817b4 100644 --- a/css/styles.css +++ b/css/styles.css @@ -2,13 +2,13 @@ body { background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='100%25' width='100%25'%3E%3Cdefs%3E%3Cpattern id='doodad' width='10' height='10' viewBox='0 0 40 40' patternUnits='userSpaceOnUse' patternTransform=''%3E%3Crect width='100%25' height='100%25' fill='rgba(42, 41, 41,1)'/%3E%3Cpath d='M-10-1h60v2h-60z' fill='rgba(58, 57, 57,1)' filter='url(%23filter-doodad-1)'/%3E%3Cpath d='M-10 39h60v2h-60z' fill='rgba(58, 57, 57,1)' filter='url(%23filter-doodad-1)'/%3E%3Cpath d='M-10 29h60v2h-60z' fill='rgba(52, 51, 51,1)' filter='url(%23filter-doodad-2)'/%3E%3Cpath d='M29-10v60h2v-60z' fill='rgba(52, 51, 51,1)' filter='url(%23filter-doodad-2)'/%3E%3Cpath d='M9-10v60h2v-60z' fill='rgba(58, 57, 57,1)' filter='url(%23filter-doodad-1)'/%3E%3C/pattern%3E%3Cfilter id='filter-doodad-1'%3E%3CfeTurbulence baseFrequency='0.9' numOctaves='2' type='fractalNoise' result='result1'/%3E%3CfeDisplacementMap in2='result1' scale='13' result='result2' xChannelSelector='R' in='SourceGraphic'/%3E%3CfeComposite in2='result2' in='SourceGraphic' operator='atop' result='fbSourceGraphic'/%3E%3C/filter%3E%3Cfilter id='filter-doodad-2'%3E%3CfeTurbulence baseFrequency='1.7000000000000002' numOctaves='2' type='fractalNoise' result='result1'/%3E%3CfeDisplacementMap in2='result1' scale='14' result='result2' xChannelSelector='R' in='SourceGraphic'/%3E%3CfeComposite in2='result2' in='SourceGraphic' operator='atop' result='fbSourceGraphic'/%3E%3C/filter%3E%3C/defs%3E%3Crect fill='url(%23doodad)' height='200%25' width='200%25'/%3E%3C/svg%3E "); } -.topbar { +.hnav { font-family: "Kanit", sans-serif; font-weight: 400; overflow: hidden; background-color: rgba(25, 25, 25, .5); } -.topbar a { +.hnav a { float: left; color: white; text-align: center; @@ -27,7 +27,7 @@ body { font-weight: 700; } -.main-body { +main { width: 60%; margin: auto; color: white; @@ -39,15 +39,15 @@ body { min-height: calc(100vh - 15rem); } -.main-body a { +main a { color: rgb(206, 206, 206); } -.main-body a:hover { +main a:hover { color: rgb(255, 255, 255); } -.footer { +footer { width: 100%; margin: auto; text-align: center; @@ -66,7 +66,7 @@ body { margin: auto; } -.main-body header { +main header { font-weight: 400; } @@ -153,4 +153,20 @@ body { body { margin: 0%; +} + +.post-description { + margin-top: 7px; +} + +.post-description * { + line-height: 0.0625em; +} + +.post-description>span { + font-size: medium; +} + +.post-description { + margin-bottom: 37px; } \ No newline at end of file diff --git a/develop.markdown b/develop.md similarity index 97% rename from develop.markdown rename to develop.md index 39708e0..25f05ec 100644 --- a/develop.markdown +++ b/develop.md @@ -1,5 +1,5 @@ --- -layout: generic +layout: default title: "Develop" description: "Make mods with Muon" --- diff --git a/download.markdown b/download.md similarity index 96% rename from download.markdown rename to download.md index 7c72680..038d371 100644 --- a/download.markdown +++ b/download.md @@ -1,5 +1,5 @@ --- -layout: generic +layout: default title: "Downloads" description: "MuonMC downloads" --- diff --git a/index.markdown b/index.md similarity index 97% rename from index.markdown rename to index.md index b196178..24e67cb 100644 --- a/index.markdown +++ b/index.md @@ -1,7 +1,8 @@ --- layout: index -title: "Index" +title: "MuonMC" description: "The modloader that works." +permalink: / --- # MuonMC