Skip to content

Commit

Permalink
Merge pull request #24 from DREDGE-Mods/dev
Browse files Browse the repository at this point in the history
Fix mod page embeds
  • Loading branch information
xen-42 authored Oct 20, 2023
2 parents 7f173c3 + 5b5829f commit 2d466b1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/layouts/ModPage.astro
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const { frontmatter } = Astro.props;
const authorGithubLink = frontmatter.mod.repo.split("/")[0];
---

<Layout title={frontmatter.title}>
<Layout title={frontmatter.mod.name}>
<main>
<br/>
<div class="d-flex justify-content-center">
Expand Down
13 changes: 8 additions & 5 deletions src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ import json from '../database.json';

<br/>

<Title title="Winch Mod Loader" />
<Title title="Creating Mods" />

<div class="w-100 justify-content-center d-flex">
<div class="w-md-50">
Expand All @@ -86,14 +86,17 @@ import json from '../database.json';
</div>

<div class="ms-4">
<p>All the mods available on the site are made possible thanks to the <a href="https://github.com/Hacktix/Winch">Winch mod loader</a>
<p>All the mods available on the site are made possible thanks to the <a href="https://github.com/DREDGE-Mods/Winch">Winch mod loader</a>
by <a href="https://github.com/Hacktix">Hacktix</a>.</p>

<p>If you're interested in creating mods yourself, check out the <a href=https://github.com/Hacktix/Winch/wiki>documentation</a>
or try picking apart the <a href="https://github.com/Hacktix/Winch/tree/master/Winch.Examples">example mods</a>.</p>
<p>
If you're interested in creating mods yourself, use the Then use the <a href="https://github.com/DREDGE-Mods/WinchModTemplate">Winch Mod Template</a> on GitHub.
You can then read the Winch <a href=https://github.com/Hacktix/Winch/wiki>documentation</a>
or try picking apart the <a href="https://github.com/DREDGE-Mods/Winch/tree/master/Winch.Examples">example mods</a>.
</p>

<p>If you have already created a mod and want to add it to the database, click
<a href="https://github.com/xen-42/DredgeModDatabase/issues/new?assignees=&labels=add-new-mod&projects=&template=add-new-mod.yml&title=%5BYour+mod+name+here%5D">
<a href="https://github.com/DREDGE-Mods/DredgeModDatabase/issues/new?assignees=&labels=add-new-mod&projects=&template=add-new-mod.yml&title=%5BYour+mod+name+here%5D">
here</a>.
</p>
</div>
Expand Down

0 comments on commit 2d466b1

Please sign in to comment.