-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Tweak appearance and update resource database.
- Loading branch information
1 parent
cf34882
commit 66e7455
Showing
2 changed files
with
65 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -77,13 +77,69 @@ | |
] | ||
}, | ||
{ | ||
"name": "ui", | ||
"title": "UI Libraries", | ||
"cover": "resource-ui.png", | ||
"url": "https://amazon.com", | ||
"name": "e1", | ||
"title": "FlatRedBall", | ||
"author": "Victor Chelaru", | ||
"cover": "https://flatredball.com/wp-content/uploads/2016/02/cropped-logo-1024-150x150.png", | ||
"url": "https://flatredball.com/", | ||
"pixelart": false, | ||
"tags": [ | ||
"ui" | ||
"engines" | ||
] | ||
}, | ||
{ | ||
"name": "l1", | ||
"title": "MonoGame.Extended", | ||
"author": "Christopher Whitley (AristurtleDev)", | ||
"cover": "https://www.monogameextended.net/img/logo.png", | ||
"url": "https://www.monogameextended.net/", | ||
"pixelart": false, | ||
"tags": [ | ||
"libraries" | ||
] | ||
}, | ||
{ | ||
"name": "l2", | ||
"title": "Gum", | ||
"author": "Christopher Whitley (AristurtleDev)", | ||
"cover": "https://docs.flatredball.com/~gitbook/image?url=https%3A%2F%2F3900811371-files.gitbook.io%2F%7E%2Ffiles%2Fv0%2Fb%2Fgitbook-x-prod.appspot.com%2Fo%2Forganizations%252F-M_fyYVTQKWSV65sXTSp%252Fsites%252Fsite_3hxze%252Flogo%252Fo54By5G58RWuAHsltTBS%252Fgum-logo-reverse-512.png%3Falt%3Dmedia%26token%3D54198098-3f7d-40ff-a442-1a28a2fbbca9&width=260&dpr=2&quality=100&sign=55148268&sv=2", | ||
"url": "https://docs.flatredball.com/gum", | ||
"pixelart": false, | ||
"tags": [ | ||
"libraries" | ||
] | ||
}, | ||
{ | ||
"name": "l3", | ||
"title": "Myra", | ||
"author": "Roman Shapiro", | ||
"cover": "", | ||
"url": "https://github.com/rds1983/Myra", | ||
"pixelart": false, | ||
"tags": [ | ||
"libraries" | ||
] | ||
}, | ||
{ | ||
"name": "l4", | ||
"title": "ImGui.NET", | ||
"author": "ImGuiNET", | ||
"cover": "", | ||
"url": "https://github.com/ImGuiNET/ImGui.NET", | ||
"pixelart": false, | ||
"tags": [ | ||
"libraries" | ||
] | ||
}, | ||
{ | ||
"name": "a1", | ||
"title": "Kenny NL Assets", | ||
"author": "Kenny NL", | ||
"cover": "https://kenney.nl/data/img/[email protected]", | ||
"url": "https://kenney.nl/assets", | ||
"pixelart": false, | ||
"tags": [ | ||
"assets" | ||
] | ||
} | ||
] |
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 |
---|---|---|
|
@@ -14,6 +14,9 @@ permalink: resources/{{ (category | slugify) if category !== "all" }}/ | |
<h1 id="monogame-resource" class="fw-bold"><a href="#monogame-resource">MonoGame Resources</a></h1> | ||
<p> | ||
Here's a list of MonoGame resources that can help you on your journey. | ||
If you have a resource you'd like to share, please <a href="mailto:[email protected]?subject=New%20Resource&body=Hi,%20Please%20add%20this%20resource%20to%20your%20list:%0A%0ATitle:%20%0AAuthor:%20%0AResource%20URL:%20%0AImage%20URL:%20%0ATags:%20"> | ||
Email Us | ||
</a> | ||
</p> | ||
</section> | ||
|
||
|
@@ -25,6 +28,7 @@ permalink: resources/{{ (category | slugify) if category !== "all" }}/ | |
{% if category in resource.tags or category === "all" %} | ||
<a class="mg-no-link hide-external-icon resource-item" href="{{ resource.url }}" title="{{ resource.title }}"> | ||
<div class="mg-card mg-box-shadow d-flex flex-column"> | ||
<div class="mg-card-title">{{ resource.title }}</div> | ||
<div class="mg-card-thumbnail" | ||
style="background-image: url('{{ resource.cover }}');"> | ||
</div> | ||
|