Update and fix

gh-pages
rubenwardy 2021-04-03 13:59:15 +01:00
parent b2f64594fd
commit 163f4664e6
126 changed files with 213 additions and 130 deletions

3
.gitignore vendored
View File

@ -1,3 +1,6 @@
*~
*.tmp
_site
.bundle
.jekyll-cache
vendor

7
Gemfile Normal file
View File

@ -0,0 +1,7 @@
source "https://rubygems.org"
gem "jekyll"
group :jekyll_plugins do
gem "jekyll-redirect-from"
end

70
Gemfile.lock Normal file
View File

@ -0,0 +1,70 @@
GEM
remote: https://rubygems.org/
specs:
addressable (2.7.0)
public_suffix (>= 2.0.2, < 5.0)
colorator (1.1.0)
concurrent-ruby (1.1.8)
em-websocket (0.5.2)
eventmachine (>= 0.12.9)
http_parser.rb (~> 0.6.0)
eventmachine (1.2.7)
ffi (1.15.0)
forwardable-extended (2.6.0)
http_parser.rb (0.6.0)
i18n (1.8.10)
concurrent-ruby (~> 1.0)
jekyll (4.2.0)
addressable (~> 2.4)
colorator (~> 1.0)
em-websocket (~> 0.5)
i18n (~> 1.0)
jekyll-sass-converter (~> 2.0)
jekyll-watch (~> 2.0)
kramdown (~> 2.3)
kramdown-parser-gfm (~> 1.0)
liquid (~> 4.0)
mercenary (~> 0.4.0)
pathutil (~> 0.9)
rouge (~> 3.0)
safe_yaml (~> 1.0)
terminal-table (~> 2.0)
jekyll-redirect-from (0.16.0)
jekyll (>= 3.3, < 5.0)
jekyll-sass-converter (2.1.0)
sassc (> 2.0.1, < 3.0)
jekyll-watch (2.2.1)
listen (~> 3.0)
kramdown (2.3.1)
rexml
kramdown-parser-gfm (1.1.0)
kramdown (~> 2.0)
liquid (4.0.3)
listen (3.5.1)
rb-fsevent (~> 0.10, >= 0.10.3)
rb-inotify (~> 0.9, >= 0.9.10)
mercenary (0.4.0)
pathutil (0.16.2)
forwardable-extended (~> 2.6)
public_suffix (4.0.6)
rb-fsevent (0.10.4)
rb-inotify (0.10.1)
ffi (~> 1.0)
rexml (3.2.4)
rouge (3.26.0)
safe_yaml (1.0.5)
sassc (2.4.0)
ffi (~> 1.9)
terminal-table (2.0.0)
unicode-display_width (~> 1.1, >= 1.1.1)
unicode-display_width (1.7.0)
PLATFORMS
ruby
DEPENDENCIES
jekyll
jekyll-redirect-from
BUNDLED WITH
2.0.2

16
_data/gallery.yml Normal file
View File

@ -0,0 +1,16 @@
landmarks:
- caption: Lighthouse
url: lighthouse.png
images:
- caption: Saren Mansion, my first build
url: saren_mansion.png
- caption: Ruben Express store
url: ru_store.png
- caption: Private residence
url: r.png
- caption: Advert for shop
url: ad.png
- caption: Tower in Nameless Town
url: tower2.png
- caption: Tower in Nameless Town
url: tower.png

View File

@ -24,15 +24,14 @@
<style>
header {
background: url("{{ page.root }}static/background.png");
background-position: center;
background-size: cover;
margin-bottom: 3.25em;
}
header h1 {
font-size: 400%;
margin: 0.4em 0;
}
header h1, header span {
margin-left: 20px;
margin: 0 0 0.4em 0;
}
header a {
@ -85,19 +84,20 @@
</style>
</head>
<body>
<header class="container">
<h1>Redcrab</h1>
<header>
<div class="container">
<h1>Redcrab</h1>
<span>
<a href="{{ page.root }}">About</a>
<a href="{{ page.root }}#maps">Maps</a>
<a href="{{ page.root }}gallery">Gallery</a>
<a href="{{ page.root }}downloads">Downloads</a>
</span>
<span>
<a href="{{ page.root }}">About</a>
<a href="{{ page.root }}#gallery">Gallery</a>
<a href="{{ page.root }}#downloads">Downloads</a>
</span>
</div>
</header>
<main>
<h1>{{ page.title }}</h1>
<main class="container">
{{ content }}
</main>
<footer></footer>
</body>
</html>

View File

@ -1,56 +0,0 @@
---
title: Downloads
layout: default
root: ../
---
<h2>Redcrab Game</h2>
<p>
A collection of mods used to run Redcrab | 2MB |
<a href="https://github.com/rubenwardy/redcrab_game">Github</a> |
<a href="https://github.com/rubenwardy/redcrab_game/archive/master.zip">Download (.zip)</a>
</p>
<h2>November 2013</h2>
<p>
Manually collected incomplete snapshot | 110MB |
<a href="https://minetest.rubenwardy.com/redcrab_nov13.zip">Download (.zip)</a>
</p>
<link rel="stylesheet" href="{{ page.root }}static/leaflet.css" />
<script src="{{ page.root }}static/leaflet.js"></script>
<style> .labelclass{position: absolute; background: rgba(255,0,255,0); font-size:20px;}</style>
<div id="mapid" style="width: 100%; height: 500px;"></div>
<script>
var MineTestMap = L.map('mapid', {
crs: L.CRS.Simple,
});
MineTestMap.setView([0.0, 0.0], 5);
L.tileLayer('nov13/{z}_{x}_{y}_map.jpg', {
minNativeZoom: 0,
maxNativeZoom: 5,
attribution: 'Minetest World',
tileSize: 1024,
errorTileUrl: "nov13/empty_tile_map.jpg",
}).addTo(MineTestMap);
var popup = L.popup();
var mapZoom = 0.031250;
function onMapClick(e) {
var scaledPos = L.latLng(e.latlng.lat / mapZoom, e.latlng.lng / mapZoom);
popup
.setLatLng(e.latlng)
.setContent("You clicked the map at "+ scaledPos.toString())
.openOn(MineTestMap);
}
MineTestMap.on('click', onMapClick);
</script>
<script src="{{ page.root }}static/markers.js" defer></script></body>
</html>
<h2>This Website</h2>
<p>
The source behind this website |
<a href="https://github.com/rubenwardy/redcrab">Github</a> |
<a href="https://github.com/rubenwardy/redcrab/archive/master.zip">Download (.zip)</a>
</p>

View File

@ -1,43 +0,0 @@
---
title: Gallery
layout: default
root: ../
landmarks:
- caption: Lighthouse
url: lighthouse.png
images:
- caption: Saren Mansion, my first build
url: saren_mansion.png
- caption: Ruben Express store
url: ru_store.png
- caption: Private residence
url: r.png
- caption: Advert for shop
url: ad.png
- caption: Tower in Nameless Town
url: tower2.png
- caption: Tower in Nameless Town
url: tower.png
---
<h2>Landmarks</h2>
<div class="gallery">
{% for img in page.landmarks %}
<a href="{{ img.url }}">
<img src="{{ img.url | replace:'.png','_thumb.jpg' }}" alt="{{ img.caption }}" />
<span>{{ img.caption }}</span>
</a>
{% endfor %}
</div>
<h2>My Builds</h2>
<div class="gallery">
{% for img in page.images %}
<a href="{{ img.url }}">
<img src="{{ img.url | replace:'.png','_thumb.jpg' }}" alt="{{ img.caption }}" />
<span>{{ img.caption }}</span>
</a>
{% endfor %}
</div>

View File

@ -1,22 +1,108 @@
---
title: About
title: Redcrab
layout: default
redirect_from: /maps/
redirect_from:
- /maps/
- /downloads/
- /gallery/
---
<p>
Redcrab was a very popular server during late 2011-2013, and was played on by nearly
all of the current long time members.
</p>
<section>
<h1 id="gallery">About</h1>
<p>
Redcrab was a very popular Minetestserver during late 2011-2013, and
was played on by nearly all of the current long time members.
</p>
</section>
<h2 id="maps">Maps</h2>
<p>
Note that Redcrab started to drop in users after 2012.
There isn't too much difference between these two maps.
</p>
<ul>
<li><a href="old">Redcrab official maps (12/April/2015)</a></li>
<li><a href="old-interactive">Redcrab server guide by rubenwardy (18/December/2012)</a></li>
</ul>
<section>
<h1 id="gallery">Gallery</h1>
<a href="old"><img src="old/preview.png" alt="Preview map" style="margin-top: 20px;" /></a>
<h2>Landmarks</h2>
<div class="gallery">
{% for img in site.data.gallery.landmarks %}
<a href="gallery/{{ img.url }}">
<img src="gallery/{{ img.url | replace:'.png','_thumb.jpg' }}" alt="{{ img.caption }}" />
<span>{{ img.caption }}</span>
</a>
{% endfor %}
</div>
<h2>My Builds</h2>
<div class="gallery">
{% for img in site.data.gallery.images %}
<a href="gallery/{{ img.url }}">
<img src="gallery/{{ img.url | replace:'.png','_thumb.jpg' }}" alt="{{ img.caption }}" />
<span>{{ img.caption }}</span>
</a>
{% endfor %}
</div>
</section>
<section>
<h1 id="maps">Maps</h1>
<p>
Note that Redcrab started to drop in users after 2012.
There isn't too much difference between these two maps.
</p>
<ul>
<li><a href="old">Redcrab official maps (12/April/2015)</a></li>
<li><a href="old-interactive">Redcrab server guide by rubenwardy (18/December/2012)</a></li>
</ul>
<h2 id="leaflet">Backup map</h2>
<link rel="stylesheet" href="{{ page.root }}static/leaflet.css" />
<script src="{{ page.root }}static/leaflet.js"></script>
<style> .labelclass{position: absolute; background: rgba(255,0,255,0); font-size:20px;}</style>
<div id="mapid" style="width: 100%; height: 500px;"></div>
<script>
var MineTestMap = L.map('mapid', {
crs: L.CRS.Simple,
});
MineTestMap.setView([0.0, 0.0], 5);
L.tileLayer('nov13/{z}_{x}_{y}_map.jpg', {
minNativeZoom: 0,
maxNativeZoom: 5,
attribution: 'Minetest World',
tileSize: 1024,
errorTileUrl: "nov13/empty_tile_map.jpg",
}).addTo(MineTestMap);
var popup = L.popup();
var mapZoom = 0.031250;
function onMapClick(e) {
var scaledPos = L.latLng(e.latlng.lat / mapZoom, e.latlng.lng / mapZoom);
popup
.setLatLng(e.latlng)
.setContent("You clicked the map at "+ scaledPos.toString())
.openOn(MineTestMap);
}
MineTestMap.on('click', onMapClick);
</script>
<script src="{{ page.root }}static/markers.js" defer></script>
</section>
<section>
<h1 id="downloads">Downloads</h1>
<h2>Redcrab Game</h2>
<p>
A collection of mods used to run Redcrab | 2MB |
<a href="https://github.com/rubenwardy/redcrab_game">Github</a> |
<a href="https://github.com/rubenwardy/redcrab_game/archive/master.zip">Download (.zip)</a>
</p>
<h2>November 2013</h2>
<p>
Manually collected incomplete snapshot | 110MB |
<a href="https://minetest.rubenwardy.com/redcrab_nov13.zip">Download (.zip)</a>
</p>
<h2>This Website</h2>
<p>
The source behind this website |
<a href="https://github.com/rubenwardy/redcrab">Github</a> |
<a href="https://github.com/rubenwardy/redcrab/archive/master.zip">Download (.zip)</a>
</p>
</section>

View File

Before

Width:  |  Height:  |  Size: 1.1 MiB

After

Width:  |  Height:  |  Size: 1.1 MiB

View File

Before

Width:  |  Height:  |  Size: 19 KiB

After

Width:  |  Height:  |  Size: 19 KiB

View File

Before

Width:  |  Height:  |  Size: 19 KiB

After

Width:  |  Height:  |  Size: 19 KiB

View File

Before

Width:  |  Height:  |  Size: 21 KiB

After

Width:  |  Height:  |  Size: 21 KiB

View File

Before

Width:  |  Height:  |  Size: 19 KiB

After

Width:  |  Height:  |  Size: 19 KiB

View File

Before

Width:  |  Height:  |  Size: 25 KiB

After

Width:  |  Height:  |  Size: 25 KiB

View File

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 24 KiB

View File

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 17 KiB

View File

Before

Width:  |  Height:  |  Size: 31 KiB

After

Width:  |  Height:  |  Size: 31 KiB

View File

Before

Width:  |  Height:  |  Size: 23 KiB

After

Width:  |  Height:  |  Size: 23 KiB

View File

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 17 KiB

View File

Before

Width:  |  Height:  |  Size: 41 KiB

After

Width:  |  Height:  |  Size: 41 KiB

View File

Before

Width:  |  Height:  |  Size: 35 KiB

After

Width:  |  Height:  |  Size: 35 KiB

View File

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 18 KiB

View File

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 17 KiB

View File

Before

Width:  |  Height:  |  Size: 58 KiB

After

Width:  |  Height:  |  Size: 58 KiB

View File

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 17 KiB

View File

Before

Width:  |  Height:  |  Size: 35 KiB

After

Width:  |  Height:  |  Size: 35 KiB

View File

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 18 KiB

View File

Before

Width:  |  Height:  |  Size: 83 KiB

After

Width:  |  Height:  |  Size: 83 KiB

View File

Before

Width:  |  Height:  |  Size: 28 KiB

After

Width:  |  Height:  |  Size: 28 KiB

View File

Before

Width:  |  Height:  |  Size: 68 KiB

After

Width:  |  Height:  |  Size: 68 KiB

View File

Before

Width:  |  Height:  |  Size: 19 KiB

After

Width:  |  Height:  |  Size: 19 KiB

View File

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 17 KiB

View File

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 18 KiB

View File

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 17 KiB

View File

Before

Width:  |  Height:  |  Size: 126 KiB

After

Width:  |  Height:  |  Size: 126 KiB

View File

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 24 KiB

View File

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 17 KiB

View File

Before

Width:  |  Height:  |  Size: 61 KiB

After

Width:  |  Height:  |  Size: 61 KiB

View File

Before

Width:  |  Height:  |  Size: 25 KiB

After

Width:  |  Height:  |  Size: 25 KiB

View File

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 24 KiB

View File

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 18 KiB

View File

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 18 KiB

View File

Before

Width:  |  Height:  |  Size: 178 KiB

After

Width:  |  Height:  |  Size: 178 KiB

View File

Before

Width:  |  Height:  |  Size: 71 KiB

After

Width:  |  Height:  |  Size: 71 KiB

View File

Before

Width:  |  Height:  |  Size: 54 KiB

After

Width:  |  Height:  |  Size: 54 KiB

View File

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 17 KiB

View File

Before

Width:  |  Height:  |  Size: 153 KiB

After

Width:  |  Height:  |  Size: 153 KiB

View File

Before

Width:  |  Height:  |  Size: 34 KiB

After

Width:  |  Height:  |  Size: 34 KiB

View File

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 24 KiB

View File

Before

Width:  |  Height:  |  Size: 21 KiB

After

Width:  |  Height:  |  Size: 21 KiB

View File

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 18 KiB

View File

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 24 KiB

View File

Before

Width:  |  Height:  |  Size: 19 KiB

After

Width:  |  Height:  |  Size: 19 KiB

View File

Before

Width:  |  Height:  |  Size: 19 KiB

After

Width:  |  Height:  |  Size: 19 KiB

View File

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 18 KiB

View File

Before

Width:  |  Height:  |  Size: 204 KiB

After

Width:  |  Height:  |  Size: 204 KiB

View File

Before

Width:  |  Height:  |  Size: 137 KiB

After

Width:  |  Height:  |  Size: 137 KiB

View File

Before

Width:  |  Height:  |  Size: 39 KiB

After

Width:  |  Height:  |  Size: 39 KiB

View File

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 18 KiB

View File

Before

Width:  |  Height:  |  Size: 131 KiB

After

Width:  |  Height:  |  Size: 131 KiB

View File

Before

Width:  |  Height:  |  Size: 36 KiB

After

Width:  |  Height:  |  Size: 36 KiB

View File

Before

Width:  |  Height:  |  Size: 40 KiB

After

Width:  |  Height:  |  Size: 40 KiB

View File

Before

Width:  |  Height:  |  Size: 19 KiB

After

Width:  |  Height:  |  Size: 19 KiB

View File

Before

Width:  |  Height:  |  Size: 36 KiB

After

Width:  |  Height:  |  Size: 36 KiB

View File

Before

Width:  |  Height:  |  Size: 34 KiB

After

Width:  |  Height:  |  Size: 34 KiB

View File

Before

Width:  |  Height:  |  Size: 19 KiB

After

Width:  |  Height:  |  Size: 19 KiB

View File

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 17 KiB

View File

Before

Width:  |  Height:  |  Size: 38 KiB

After

Width:  |  Height:  |  Size: 38 KiB

View File

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 24 KiB

View File

Before

Width:  |  Height:  |  Size: 27 KiB

After

Width:  |  Height:  |  Size: 27 KiB

View File

Before

Width:  |  Height:  |  Size: 21 KiB

After

Width:  |  Height:  |  Size: 21 KiB

View File

Before

Width:  |  Height:  |  Size: 284 KiB

After

Width:  |  Height:  |  Size: 284 KiB

View File

Before

Width:  |  Height:  |  Size: 233 KiB

After

Width:  |  Height:  |  Size: 233 KiB

View File

Before

Width:  |  Height:  |  Size: 128 KiB

After

Width:  |  Height:  |  Size: 128 KiB

View File

Before

Width:  |  Height:  |  Size: 128 KiB

After

Width:  |  Height:  |  Size: 128 KiB

View File

Before

Width:  |  Height:  |  Size: 144 KiB

After

Width:  |  Height:  |  Size: 144 KiB

View File

Before

Width:  |  Height:  |  Size: 47 KiB

After

Width:  |  Height:  |  Size: 47 KiB

View File

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 18 KiB

View File

Before

Width:  |  Height:  |  Size: 244 KiB

After

Width:  |  Height:  |  Size: 244 KiB

View File

Before

Width:  |  Height:  |  Size: 158 KiB

After

Width:  |  Height:  |  Size: 158 KiB

View File

Before

Width:  |  Height:  |  Size: 56 KiB

After

Width:  |  Height:  |  Size: 56 KiB

View File

Before

Width:  |  Height:  |  Size: 46 KiB

After

Width:  |  Height:  |  Size: 46 KiB

View File

Before

Width:  |  Height:  |  Size: 45 KiB

After

Width:  |  Height:  |  Size: 45 KiB

View File

Before

Width:  |  Height:  |  Size: 21 KiB

After

Width:  |  Height:  |  Size: 21 KiB

View File

Before

Width:  |  Height:  |  Size: 175 KiB

After

Width:  |  Height:  |  Size: 175 KiB

View File

Before

Width:  |  Height:  |  Size: 53 KiB

After

Width:  |  Height:  |  Size: 53 KiB

View File

Before

Width:  |  Height:  |  Size: 168 KiB

After

Width:  |  Height:  |  Size: 168 KiB

View File

Before

Width:  |  Height:  |  Size: 68 KiB

After

Width:  |  Height:  |  Size: 68 KiB

View File

Before

Width:  |  Height:  |  Size: 36 KiB

After

Width:  |  Height:  |  Size: 36 KiB

View File

Before

Width:  |  Height:  |  Size: 22 KiB

After

Width:  |  Height:  |  Size: 22 KiB

View File

Before

Width:  |  Height:  |  Size: 42 KiB

After

Width:  |  Height:  |  Size: 42 KiB

View File

Before

Width:  |  Height:  |  Size: 21 KiB

After

Width:  |  Height:  |  Size: 21 KiB

View File

Before

Width:  |  Height:  |  Size: 260 KiB

After

Width:  |  Height:  |  Size: 260 KiB

View File

Before

Width:  |  Height:  |  Size: 264 KiB

After

Width:  |  Height:  |  Size: 264 KiB

View File

Before

Width:  |  Height:  |  Size: 254 KiB

After

Width:  |  Height:  |  Size: 254 KiB

View File

Before

Width:  |  Height:  |  Size: 123 KiB

After

Width:  |  Height:  |  Size: 123 KiB

View File

Before

Width:  |  Height:  |  Size: 93 KiB

After

Width:  |  Height:  |  Size: 93 KiB

View File

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 20 KiB

View File

Before

Width:  |  Height:  |  Size: 272 KiB

After

Width:  |  Height:  |  Size: 272 KiB

View File

Before

Width:  |  Height:  |  Size: 140 KiB

After

Width:  |  Height:  |  Size: 140 KiB

Some files were not shown because too many files have changed in this diff Show More