-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
19 changed files
with
199 additions
and
12 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,9 @@ | ||
<div class="markdown"> | ||
<slot /> | ||
</div> | ||
|
||
<style lang="scss"> | ||
.markdown { | ||
position: relative; | ||
} | ||
</style> |
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
This file was deleted.
Oops, something went wrong.
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,34 @@ | ||
--- | ||
title: Re:STORE | ||
date: 2021 | ||
--- | ||
|
||
<script lang="ts"> | ||
import "$lib/scss/markdown.scss"; | ||
import banner from "$lib/images/md-assets/re-store/banner.png"; | ||
import altBanner from "$lib/images/md-assets/re-store/alt-banner.png"; | ||
import screenshot from "$lib/images/md-assets/re-store/screenshot.png"; | ||
import assets from "$lib/images/md-assets/re-store/assets.png"; | ||
</script> | ||
|
||
<img alt="Re:STORE banner" src={banner}> | ||
|
||
<div class="split"> | ||
<img alt="Re:STORE in-game screenshot" src={screenshot}> | ||
<div> | ||
|
||
### Introduction | ||
|
||
RE:Store is an isometric shooter featuring a potion-wielding shopkeeper. When your toy store is taken over by cursed, murderous teddy bears, you must "restore" your store back to its former state with your potions. | ||
|
||
*MEGA Newbies and Vets Game Jam 2021* | ||
</div> | ||
</div> | ||
|
||
### Game assets | ||
|
||
<img alt="Re:STORE in-game assets" src={assets}> | ||
|
||
<img alt="Re:STORE ending banner" src={altBanner}> | ||
|
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,9 @@ | ||
# next_id: 2 | ||
projects: | ||
- id: 1 | ||
title: Re:STORE | ||
desc: Your toy shop is suddenly taken over by murderous teddy bears! Use your potions to restore them back to their normal state and save your store. | ||
date: 2021 | ||
slug: /archive/re-store | ||
link: https://jteaaa.itch.io/re-store | ||
link_text: Play the game |
File renamed without changes.
File renamed without changes.
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,10 @@ | ||
img { | ||
width: 100%; | ||
margin: 1em 0; | ||
} | ||
|
||
.split { | ||
display: inline-grid; | ||
grid-template-columns: 1fr 1fr; | ||
gap: 3em; | ||
} |
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,24 @@ | ||
<script lang="ts"> | ||
/** @type {import('./$types').PageData} */ | ||
export let data: any; | ||
</script> | ||
|
||
<svelte:head> | ||
<title>{data.title} | Milkcee Studios</title> | ||
</svelte:head> | ||
|
||
<p> | ||
<a href="/archive">Archive</a> > | ||
<a href="/archive/{data.slug}">{data.title}</a> | ||
</p> | ||
|
||
<h2 class="title">{data.title}</h2> | ||
<p>{data.date}</p> | ||
|
||
<svelte:component this={data.content}/> | ||
|
||
<style lang="scss"> | ||
.title { | ||
margin-bottom: 0; | ||
} | ||
</style> |
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,19 @@ | ||
import { error } from "@sveltejs/kit"; | ||
|
||
/** @type {import('./$types').PageLoad} */ | ||
export async function load({ params }) { | ||
const modules = import.meta.glob("../../../../lib/data/md/*.md"); | ||
const project: any = await modules[ | ||
`../../../../lib/data/md/${params.slug}.md` | ||
](); | ||
|
||
const { title, date } = project.metadata; | ||
const content = project.default; | ||
|
||
return { | ||
slug: params.slug, | ||
title: title, | ||
date: date, | ||
content: content, | ||
}; | ||
} |
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