mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
cf4be2e734
* update error pages * update button 404 * refactor(templates): new design * refactor(welcome): new design * refactor: update gradient * feat: gradiant transition * feat: error-dev page + update * refactor: reponsive * chore: improvements * chore: no need for lang * fix(welcome): gradient border * chore: new loading screen * chore: 3px is good * Delete index_old.html * chore: remove extra lines * chore: welcome lighter * chore: lighter for dev error * fix: mention `NuxtWelcome` and format code * chore: format html files * move version to main and set to empty by default Co-authored-by: Alexandre Chopin <alex@nuxtjs.com> Co-authored-by: Florent <florentdelerue@hotmail.com> Co-authored-by: Pooya Parsa <pyapar@gmail.com>
18 lines
553 B
HTML
18 lines
553 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script src="https://cdn.jsdelivr.net/npm/petite-vue" defer init></script>
|
|
<script type="module" src="/styles.ts"></script>
|
|
</head>
|
|
<body v-scope='{{ data }}'>
|
|
<div class="container mx-auto pt-10">
|
|
<h1 class="text-4xl mb-8">Nuxt Templates</h1>
|
|
<ul>
|
|
<li v-for="name in templateNames.filter(name => !name.includes('.json'))">
|
|
<a :href="`/templates/${name}`" class="block border p-4 mb-2 hover:border-black">{{ name }}</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</body>
|
|
</html>
|