Skip to content

Commit 5738d78

Browse files
authored
Merge pull request #5 from jimmac/wip/jimmac/jekyll-site
I checked the configuration and it should autopublish. Let's see if it works OOTB. If not I will try to fix it :) Thanks @jimmac
2 parents 8f91a96 + 7b90ec4 commit 5738d78

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+1240
-12079
lines changed

CNAME

Lines changed: 0 additions & 1 deletion
This file was deleted.

Gemfile

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
source "https://rubygems.org"
2+
3+
# Hello! This is where you manage which Jekyll version is used to run.
4+
# When you want to use a different version, change it below, save the
5+
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
6+
#
7+
# bundle exec jekyll serve
8+
#
9+
# This will help ensure the proper Jekyll version is running.
10+
# Happy Jekylling!
11+
gem "jekyll", "~> 4.1.0"
12+
13+
# This is the default theme for new Jekyll sites. You may change this to anything you like.
14+
15+
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
16+
# uncomment the line below. To upgrade, run `bundle update github-pages`.
17+
# gem "github-pages", group: :jekyll_plugins
18+
19+
# If you have any plugins, put them here!
20+
group :jekyll_plugins do
21+
# gem 'jekyll-feed', '~> 0.13'
22+
# gem 'jekyll-sitemap', '~> 1.4'
23+
# gem 'jekyll-compose', '~> 0.12.0'
24+
# gem 'jekyll-postfiles', '~> 3.1'
25+
end
26+
27+
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
28+
# gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]
29+
30+
# Performance-booster for watching directories on Windows
31+
# gem "wdm", "~> 0.1.0" if Gem.win_platform?

README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
Fleet Commander website
2+
=======================
3+
4+
To set up jekyll locally on Fedora:
5+
6+
install ruby, rubygems and rubygem-bundler
7+
8+
In the git checkout, do a `bundle install`. This installs all
9+
the needed modules in their appropriate vesions.
10+
11+
To run a local web server to test the site:
12+
13+
```
14+
bundle exec jekyll s
15+
```
16+
17+
The CI should deploy the site automatically.

_config.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Site settings
2+
title: fleet commander
3+
baseurl: "" # the subpath of your site, e.g. /blog/
4+
url: "https://fleet-commander.org" # the base hostname & protocol for your site
5+
6+
permalink: /:title/
7+
8+
# Build settings
9+
markdown: kramdown

_includes/footer.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<footer class="site-footer">
2+
<p>&copy; {{ site.title }}, 2021</p>
3+
4+
<p><a href="https://github.com/fleet-commander/fleet-commander.github.io">Website source</a></p>
5+
</footer>

_includes/head.html

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<head>
2+
<meta charset="utf-8">
3+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
4+
<meta name="viewport" content="width=device-width, initial-scale=1">
5+
<meta name="theme-color" content="#0021D8">
6+
7+
<title>{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</title>
8+
9+
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}">
10+
<link rel="alternate" type="application/rss+xml" title="{{ site.title }}" href="{{ "/feed.xml" | prepend: site.baseurl | prepend: site.url }}" />
11+
12+
<link rel="stylesheet" href="{{ "/style.css" | prepend: site.baseurl }}">
13+
14+
<link rel="icon" type="image/png" href="/favicon.png" />
15+
<link rel="icon" sizes="144x144" href="apple-touch-icon.png">
16+
17+
<!-- Twitter -->
18+
<meta property="twitter:title" content="Toolbox">
19+
<meta property="twitter:image" content="https://toolbox.io/assets/card.png" />
20+
<meta property="twitter:card" content="summary_large_image">
21+
<meta property="twitter:description" content="Toolbox: Easy Container Environments">
22+
23+
<!-- Open Graph -->
24+
<meta property="og:title" content="Toolbox">
25+
<meta property="og:url" content="https://toolbox.io">
26+
<meta property="og:description" content="Toolbox: Easy Container Environments">
27+
<meta property="og:image" content="https://toolbox.io/assets/card.png">
28+
</head>

_includes/header.html

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<header class="site-header">
2+
3+
<div class="wrapper">
4+
5+
<a class="page-logo" href="{{ site.baseurl }}/">
6+
<img src="/assets/page-logo.svg" alt="systemd">
7+
</a>
8+
9+
</div>
10+
11+
</header>

_layouts/default.html

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<!DOCTYPE html>
2+
<html>
3+
4+
{% include head.html %}
5+
6+
<body>
7+
8+
{% include header.html %}
9+
10+
<div class="container">
11+
{{ content }}
12+
</div>
13+
14+
{% include footer.html %}
15+
16+
</body>
17+
18+
</html>

apple-touch-icon.png

5.45 KB
Loading

apple-touch-icon.svg

Lines changed: 92 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)