This commit is contained in:
parent
e23f33b85b
commit
aaca91000b
4 changed files with 10 additions and 7 deletions
|
@ -31,7 +31,7 @@ function populateBlog(json, cat) {
|
||||||
<div class="card bg-light blog-entry rounded-0">
|
<div class="card bg-light blog-entry rounded-0">
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
<h4 class="card-title blog-title"><a class="blog-button" href="/blog/${obj.id}">${obj.name}</a></h4>
|
<h4 class="card-title blog-title"><a class="blog-button" href="/blog/${obj.id}">${obj.name}</a></h4>
|
||||||
<div class="card-text text-muted blog-summary">${obj.summary}</div>
|
<div class="card-text blog-summary">${obj.summary}</div>
|
||||||
<span class="text-muted project-status">${obj.date}</span>
|
<span class="text-muted project-status">${obj.date}</span>
|
||||||
<span class="text-muted blog-cat">${obj.cat}</span>
|
<span class="text-muted blog-cat">${obj.cat}</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -3,6 +3,7 @@ const projects = [{
|
||||||
desc: 'Actually Additions is a rather popular Minecraft mod that I used to work on. It\'s become widely known in the modding community and has reached over 30 million downloads by now, which is crazy. I don\'t work on it anymore myself, but it\'s being maintained for current versions by someone else.',
|
desc: 'Actually Additions is a rather popular Minecraft mod that I used to work on. It\'s become widely known in the modding community and has reached over 30 million downloads by now, which is crazy. I don\'t work on it anymore myself, but it\'s being maintained for current versions by someone else.',
|
||||||
links: {
|
links: {
|
||||||
'CurseForge page': 'https://www.ellpeck.de/actadd',
|
'CurseForge page': 'https://www.ellpeck.de/actadd',
|
||||||
|
"Report an issue": "https://github.com/Ellpeck/ActuallyAdditions/issues",
|
||||||
'Online manual': 'https://www.ellpeck.de/actaddmanual/'
|
'Online manual': 'https://www.ellpeck.de/actaddmanual/'
|
||||||
},
|
},
|
||||||
status: 'Maintained',
|
status: 'Maintained',
|
||||||
|
@ -13,7 +14,8 @@ const projects = [{
|
||||||
desc: "Nature's Aura is a Minecraft mod about collecting, using and replenishing the Aura naturally present in the world to create useful devices and unique mechanics.",
|
desc: "Nature's Aura is a Minecraft mod about collecting, using and replenishing the Aura naturally present in the world to create useful devices and unique mechanics.",
|
||||||
status: 'In development',
|
status: 'In development',
|
||||||
links: {
|
links: {
|
||||||
'CurseForge page': 'https://minecraft.curseforge.com/projects/natures-aura'
|
'CurseForge page': 'https://minecraft.curseforge.com/projects/natures-aura',
|
||||||
|
"Report an issue": "https://github.com/Ellpeck/NaturesAura/issues"
|
||||||
},
|
},
|
||||||
icon: 'na'
|
icon: 'na'
|
||||||
},
|
},
|
||||||
|
@ -22,7 +24,8 @@ const projects = [{
|
||||||
desc: "Pretty Pipes is a simple to use, all-inclusive item transport mod for Minecraft. It features simple pipes that can be upgraded using modules to accomplish much more advanced tasks.",
|
desc: "Pretty Pipes is a simple to use, all-inclusive item transport mod for Minecraft. It features simple pipes that can be upgraded using modules to accomplish much more advanced tasks.",
|
||||||
status: 'In development',
|
status: 'In development',
|
||||||
links: {
|
links: {
|
||||||
'CurseForge page': 'https://www.curseforge.com/minecraft/mc-mods/pretty-pipes'
|
'CurseForge page': 'https://www.curseforge.com/minecraft/mc-mods/pretty-pipes',
|
||||||
|
"Report an issue": "https://github.com/Ellpeck/PrettyPipes/issues"
|
||||||
},
|
},
|
||||||
icon: 'pp'
|
icon: 'pp'
|
||||||
},
|
},
|
||||||
|
|
|
@ -33,10 +33,10 @@ body {
|
||||||
|
|
||||||
.blog-button:link,
|
.blog-button:link,
|
||||||
.blog-button:visited {
|
.blog-button:visited {
|
||||||
color: #d8d8d8 !important;
|
color: white !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.blog-button:hover,
|
.blog-button:hover,
|
||||||
.blog-button:active {
|
.blog-button:active {
|
||||||
color: white !important;
|
color: rgb(182, 182, 182) !important;
|
||||||
}
|
}
|
|
@ -117,13 +117,13 @@ body {
|
||||||
|
|
||||||
.blog-button:link,
|
.blog-button:link,
|
||||||
.blog-button:visited {
|
.blog-button:visited {
|
||||||
color: rgb(73, 73, 73);
|
color: black;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.blog-button:hover,
|
.blog-button:hover,
|
||||||
.blog-button:active {
|
.blog-button:active {
|
||||||
color: black;
|
color: rgb(73, 73, 73);
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue