Doc fixes

This commit is contained in:
Mr. Stallion 2020-06-19 14:34:34 -05:00
parent 3206e09c76
commit 72b7a4094a
8 changed files with 120 additions and 40 deletions

View File

@ -11,7 +11,7 @@ source "https://rubygems.org"
gem "jekyll", "~> 3.8.7" gem "jekyll", "~> 3.8.7"
# This is the default theme for new Jekyll sites. You may change this to anything you like. # This is the default theme for new Jekyll sites. You may change this to anything you like.
gem "minima", "~> 2.0" gem "jekyll-theme-slate", "~> 0.1.1"
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and # If you want to use GitHub Pages, remove the "gem "jekyll"" above and
# uncomment the line below. To upgrade, run `bundle update github-pages`. # uncomment the line below. To upgrade, run `bundle update github-pages`.
@ -31,4 +31,3 @@ end
# Performance-booster for watching directories on Windows # Performance-booster for watching directories on Windows
gem "wdm", "~> 0.1.0", :install_if => Gem.win_platform? gem "wdm", "~> 0.1.0", :install_if => Gem.win_platform?

View File

@ -33,6 +33,9 @@ GEM
sass (~> 3.4) sass (~> 3.4)
jekyll-seo-tag (2.6.1) jekyll-seo-tag (2.6.1)
jekyll (>= 3.3, < 5.0) jekyll (>= 3.3, < 5.0)
jekyll-theme-slate (0.1.1)
jekyll (~> 3.5)
jekyll-seo-tag (~> 2.0)
jekyll-watch (2.2.1) jekyll-watch (2.2.1)
listen (~> 3.0) listen (~> 3.0)
kramdown (1.17.0) kramdown (1.17.0)
@ -41,10 +44,6 @@ GEM
rb-fsevent (~> 0.10, >= 0.10.3) rb-fsevent (~> 0.10, >= 0.10.3)
rb-inotify (~> 0.9, >= 0.9.10) rb-inotify (~> 0.9, >= 0.9.10)
mercenary (0.3.6) 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.2) pathutil (0.16.2)
forwardable-extended (~> 2.6) forwardable-extended (~> 2.6)
public_suffix (4.0.5) public_suffix (4.0.5)
@ -71,7 +70,7 @@ PLATFORMS
DEPENDENCIES DEPENDENCIES
jekyll (~> 3.8.7) jekyll (~> 3.8.7)
jekyll-feed (~> 0.6) jekyll-feed (~> 0.6)
minima (~> 2.0) jekyll-theme-slate (~> 0.1.1)
tzinfo (~> 1.2) tzinfo (~> 1.2)
tzinfo-data tzinfo-data
wdm (~> 0.1.0) wdm (~> 0.1.0)

View File

@ -16,11 +16,11 @@
title: F-Chat Rising title: F-Chat Rising
email: nope@nope.com email: nope@nope.com
description: >- # this means to ignore newlines until "baseurl:" description: >- # this means to ignore newlines until "baseurl:"
Heavily modded F-Chat 3.0 client A heavily modded F-Chat 3.0 client
baseurl: "" # the subpath of your site, e.g. /blog baseurl: "" # the subpath of your site, e.g. /blog
url: "" # the base hostname & protocol for your site, e.g. http://example.com url: "" # the base hostname & protocol for your site, e.g. http://example.com
github_username: mrstallion github_username: mrstallion
show_downloads: false show_downloads: true
# Build settings # Build settings
markdown: kramdown markdown: kramdown
@ -41,4 +41,10 @@ plugins:
# - vendor/gems/ # - vendor/gems/
# - vendor/ruby/ # - vendor/ruby/
theme: jekyll-theme-slate theme: jekyll-theme-slate
download:
win_url: https://github.com/mrstallion/flist-rising/releases/download/v3.0.13-rising-v1/F-Chat.Rising.Setup.exe
mac_url: https://github.com/mrstallion/flist-rising/releases/download/v3.0.13-rising-v1/F-Chat.Rising.dmg

101
docs/_layouts/rising.html Normal file
View File

@ -0,0 +1,101 @@
<!DOCTYPE html>
<html lang="{{ site.lang | default: "en-US" }}">
<head>
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,maximum-scale=2">
<link rel="stylesheet" type="text/css" media="screen" href="{{ '/assets/css/style.css?v=' | append: site.github.build_revision | relative_url }}">
<style>
.mac_download_link {
display: block;
float: left;
width: 45px;
height:45px;
text-indent: -5000px;
overflow: hidden;
background: url(../assets/mac.png) no-repeat bottom left;
margin-left: 18px;
background-size: contain;
}
.win_download_link {
display: block;
float: left;
width: 45px;
height:45px;
text-indent: -5000px;
overflow: hidden;
background: url(../assets/win.png) no-repeat bottom right;
background-size: contain;
}
.mac_download_link:hover {
background: url(../assets/mac.png) no-repeat top left;
background-size: contain;
filter: brightness(1.2);
}
.win_download_link:hover {
background: url(../assets/win.png) no-repeat top right;
background-size: contain;
filter: brightness(1.2);
}
#downloads_small {
height: 45px;
}
</style>
{% seo %}
</head>
<body>
<!-- HEADER -->
<div id="header_wrap" class="outer">
<header class="inner">
{% if site.github.is_project_page %}
<a id="forkme_banner" href="{{ site.github.repository_url }}">View on GitHub</a>
{% endif %}
<h1 id="project_title">{{ site.title | default: site.github.repository_name }}</h1>
<h2 id="project_tagline">{{ site.description | default: site.github.project_tagline }}</h2>
{% if site.show_downloads %}
<section id="downloads_small">
<a class="win_download_link" href="{{ site.download.win_url }}">Download for Windows</a>
<a class="mac_download_link" href="{{ site.download.mac_url }}">Download for MacOS</a>
</section>
{% endif %}
</header>
</div>
<!-- MAIN CONTENT -->
<div id="main_content_wrap" class="outer">
<section id="main_content" class="inner">
{{ content }}
</section>
</div>
<!-- FOOTER -->
<div id="footer_wrap" class="outer">
<footer class="inner">
<p></p>
</footer>
</div>
{% if site.google_analytics %}
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', '{{ site.google_analytics }}', 'auto');
ga('send', 'pageview');
</script>
{% endif %}
</body>
</html>

View File

@ -1,25 +0,0 @@
---
layout: post
title: "Welcome to Jekyll!"
date: 2020-06-19 13:17:40 -0500
categories: jekyll update
---
Youll 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.
To add new posts, simply add a file in the `_posts` directory that follows the convention `YYYY-MM-DD-name-of-post.ext` and includes 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 [Jekylls 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/

BIN
docs/assets/mac.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

BIN
docs/assets/win.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.8 KiB

View File

@ -1,5 +1,5 @@
--- ---
layout: default layout: rising
--- ---
# Download Now! # Download Now!
@ -19,22 +19,22 @@ See a [detailed list of features](https://github.com/mrstallion/flist-rising/blo
## Link Previews ## Link Previews
Hover your mouse on any link to view the image. Hover your mouse on any link to view the image.
![Smarter Ads](./assets/link-preview.png) ![Smarter Ads](assets/link-preview.png)
## Smarter Ads ## Smarter Ads
Characters who match your preferences have highlighted ads. Characters who match your preferences have highlighted ads.
![Smarter Ads](./assets/smarter-ads.png) ![Smarter Ads](assets/smarter-ads.png)
## Improved Search ## Improved Search
See immediately who is a good match for you. See immediately who is a good match for you.
![Improved Search](./assets/improved-search.png) ![Improved Search](assets/improved-search.png)
## UI Tweaks ## UI Tweaks
Dozens of useful improvements all around! Dozens of useful improvements all around!
![UI Tweaks](./assets/ui-tweaks.png) ![UI Tweaks](assets/ui-tweaks.png)