-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add projects page for including download links to our mods
So far just adding active ones, will add others after testing on the live site
- Loading branch information
1 parent
aed2afe
commit d8c51b0
Showing
9 changed files
with
99 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
<div class="uk-card uk-card-default uk-card-body uk-card-hover uk-card-small"> | ||
<div uk-grid data-uk-grid-margin class=""> | ||
<div class="uk-width-1-1@s uk-width-1-4@m uk-text-center"> | ||
<img src="/assets/images/projects/{{include.name}}.png"/> | ||
</div> | ||
<div class="uk-width-1-1@s uk-width-1-2@m"> | ||
<h3 id="{{include.name}}" class="project-title">{{include.title | default: include.name}}</h3> | ||
<p>{{include.description}}</p> | ||
</div> | ||
<div class="uk-width-1-1@s uk-width-1-4@m project-links"> | ||
<a href="https://www.curseforge.com/minecraft/mc-mods/{{include.curseforge | default: include.name}}" | ||
class="uk-width-1-1 uk-button uk-button-success uk-button-small uk-text-bold"> | ||
CurseForge | ||
</a> | ||
{% unless include.modrinth == false %} | ||
<a href="https://modrinth.com/mod/{{include.modrinth | default: include.name}}" | ||
class="uk-width-1-1 uk-button uk-button-success uk-button-small uk-text-bold"> | ||
Modrinth | ||
</a> | ||
{% endunless %} | ||
{% assign github-author = include.github-author | default: "SlimeKnights" %} | ||
{% assign github-project = include.github | default: include.name %} | ||
{% assign github-url = "https://github.com/" | append: github-author | append: "/" | append: github-project %} | ||
{% unless include.inactive %} | ||
<a href="{{github-url}}/issues" | ||
class="uk-width-1-1 uk-button uk-button-danger uk-button-small"> | ||
Report a Bug | ||
</a> | ||
{% endunless %} | ||
<a href="{{github-url}}" | ||
class="uk-width-1-1 uk-button uk-button-default uk-button-small"> | ||
Source Code | ||
</a> | ||
</div> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
--- | ||
layout: page | ||
title: Projects | ||
permalink: /projects/ | ||
--- | ||
|
||
This page lists download links for all SlimeKnights mods. | ||
|
||
## Active Projects | ||
|
||
<div class="project-list"> | ||
{% include project.html | ||
name="tinkers-construct" title="Tinkers' Construct" | ||
github="TinkersConstruct" | ||
description="Tinkers' Construct is a mod about putting tools together in a wide variety of ways, then modifying them until they turn into something else." | ||
%} | ||
{% include project.html | ||
name="tinkers-things" title="Tinkers' Things" | ||
github="TinkersThings" curseforge="tinkers-json-things" | ||
description="Official addon for Tinkers' Construct adding a variety of content written purely in JSON." | ||
%} | ||
{% include project.html | ||
name="natura" title="Natura" | ||
github="Natura" github-author="progwml6" | ||
description="Natura is a mod that aims to spice up the world with interesting worldgen." | ||
%} | ||
{% include project.html | ||
name="tinkers-mechworks" title="Tinkers' Mechworks" | ||
github="TinkersMechworks" | ||
description="Tinkers' Mechworks is a mod that adds various redstone machines such as drawbridges." | ||
%} | ||
{% include project.html | ||
name="mantle" | ||
title="Mantle" | ||
github="Mantle" | ||
description="Mantle is a mod containing shared code for SlimeKnights mods. Why? For science and slime, why else?" | ||
%} | ||
</div> |