con titulo y favicon
parent
9c70564063
commit
7c35fcb70e
@ -1,12 +1,15 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
%sveltekit.head%
|
||||
</head>
|
||||
<body>
|
||||
<div>%sveltekit.body%</div>
|
||||
</body>
|
||||
<html lang="es">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<link rel="icon" href="%sveltekit.assets%/favicon.ico" />
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
%sveltekit.head%
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div>%sveltekit.body%</div>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
@ -1,33 +1,36 @@
|
||||
<script>
|
||||
import Form from '$lib/form/Form.svelte'
|
||||
import Preview from '$lib/preview/Preview.svelte'
|
||||
import Form from '$lib/form/Form.svelte';
|
||||
import Preview from '$lib/preview/Preview.svelte';
|
||||
</script>
|
||||
|
||||
<svelte:head>
|
||||
<title>Home</title>
|
||||
<meta name="description" content="Svelte demo app" />
|
||||
<title>Carteles DMD</title>
|
||||
<meta
|
||||
name="description"
|
||||
content="Aplicación para la generación automática de carteles de actividades de DMD"
|
||||
/>
|
||||
</svelte:head>
|
||||
|
||||
<div class="main">
|
||||
<section class="form"><Form /></section>
|
||||
<section class="preview"><Preview /></section>
|
||||
<section class="form"><Form /></section>
|
||||
<section class="preview"><Preview /></section>
|
||||
</div>
|
||||
|
||||
<style>
|
||||
.main {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(200px, 1fr) minmax(480px, min-content);
|
||||
grid-gap: 0.5rem;
|
||||
min-height: calc(100vh - 5rem);
|
||||
}
|
||||
.form {
|
||||
grid-column: 1/2;
|
||||
background-color: rgb(230,240,240);
|
||||
}
|
||||
.main {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(200px, 1fr) minmax(480px, min-content);
|
||||
grid-gap: 0.5rem;
|
||||
min-height: calc(100vh - 5rem);
|
||||
}
|
||||
.form {
|
||||
grid-column: 1/2;
|
||||
background-color: rgb(230, 240, 240);
|
||||
}
|
||||
|
||||
.preview {
|
||||
grid-column: 2/3;
|
||||
min-height: 200px;
|
||||
background-color: rgb(240,238,240);
|
||||
}
|
||||
.preview {
|
||||
grid-column: 2/3;
|
||||
min-height: 200px;
|
||||
background-color: rgb(240, 238, 240);
|
||||
}
|
||||
</style>
|
||||
|
Binary file not shown.
After Width: | Height: | Size: 12 KiB |
Binary file not shown.
After Width: | Height: | Size: 38 KiB |
Binary file not shown.
After Width: | Height: | Size: 10 KiB |
Binary file not shown.
After Width: | Height: | Size: 769 B |
Binary file not shown.
After Width: | Height: | Size: 1.5 KiB |
Binary file not shown.
After Width: | Height: | Size: 15 KiB |
@ -0,0 +1 @@
|
||||
{"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"}
|
Loading…
Reference in New Issue