1
0
Fork 0
mirror of https://github.com/em-squared/5e-drs.git synced 2025-10-30 21:24:18 +00:00

intégration des objets magiques + filtres

This commit is contained in:
Maxime Moraine 2020-04-09 15:27:03 +02:00
parent 1330db17af
commit d80cbc2600
315 changed files with 13824 additions and 2 deletions

View file

@ -0,0 +1,28 @@
<template>
<main class="page content">
<div class="theme-default-content">
<h1>{{ $page.title }}</h1>
<div class="magic-item-details">
<span>{{ $page.frontmatter.type }}</span>
<span v-if="$page.frontmatter.subtype"> ({{ $page.frontmatter.subtype }})</span>
<span>, {{ $page.frontmatter.rarity }}</span>
<span v-if="$page.frontmatter.attunement"> ({{ $page.frontmatter.attunement }})</span>
</div>
</div>
<Content class="mt-4" />
<p v-if="$page.frontmatter.source" class="source">Source : <em>{{ $page.frontmatter.source }}</em></p>
</main>
</template>
<script>
export default {
}
</script>
<style lang="scss">
</style>