feat: Initial Moonshine theme - Headless WordPress theme based on Nuxt
This commit is contained in:
9
wp-content/themes/moonshine/app/app.vue
Normal file
9
wp-content/themes/moonshine/app/app.vue
Normal file
@@ -0,0 +1,9 @@
|
||||
<template>
|
||||
<div>
|
||||
<NuxtRouteAnnouncer />
|
||||
<NuxtLoadingIndicator />
|
||||
<NuxtLayout>
|
||||
<NuxtPage />
|
||||
</NuxtLayout>
|
||||
</div>
|
||||
</template>
|
||||
8
wp-content/themes/moonshine/app/layouts/default.vue
Normal file
8
wp-content/themes/moonshine/app/layouts/default.vue
Normal file
@@ -0,0 +1,8 @@
|
||||
<script setup lang="ts">
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div id="layout-default">
|
||||
<NuxtPage />
|
||||
</div>
|
||||
</template>
|
||||
8
wp-content/themes/moonshine/app/pages/[...uri].vue
Normal file
8
wp-content/themes/moonshine/app/pages/[...uri].vue
Normal file
@@ -0,0 +1,8 @@
|
||||
<script setup lang="ts">
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div id="page-node-from-uri">
|
||||
<h1>Moonshine</h1>
|
||||
</div>
|
||||
</template>
|
||||
Reference in New Issue
Block a user