11<!DOCTYPE html>
2- <html lang =" en" >
3- <head >
4- <meta charset =" utf-8" />
5- <meta name =" viewport" content =" width=device-width, initial-scale=1.0" />
6- <title >@ViewData ["Title"] - Jeff Store</title >
7- <link rel =" stylesheet" href =" ~/lib/bootstrap/css/bootstrap.min.css" />
8- <link rel =" stylesheet" href =" ~/site.css" asp-append-version =" true" />
9- </head >
10- <body class =" d-flex flex-column h-100" >
11- <header >
12- <nav class =" navbar navbar-expand-md navbar-light fixed-top bg-light" >
13- <div class =" container" >
14- <a asp-action =" Index" asp-controller =" Catalogo" class =" navbar-brand" >Jeff Store</a >
15- <button class =" navbar-toggler" type =" button" data-bs-toggle =" collapse" data-bs-target =" #navbarCollapse" aria-controls =" navbarCollapse" aria-expanded =" false" aria-label =" Toggle navigation" >
16- <span class =" navbar-toggler-icon" ></span >
17- </button >
18- <div class =" collapse navbar-collapse" id =" navbarCollapse" >
19-
20- <ul class =" navbar-nav me-auto mb-2 mb-md-0" >
21- <li class =" nav-item" >
22- <a class =" nav-link text-dark" asp-area =" " asp-controller =" Catalogo" asp-action =" Index" >Home</a >
23- </li >
24- </ul >
25- <partial name =" _LoginPartial" />
26- </div >
27- </div >
28- </nav >
29- </header >
30-
31- <main class =" flex-shrink-0" >
32- <div class =" container" >
33- @RenderBody()
34- </div >
35- </main >
36-
37- <footer class =" footer mt-auto py-3 bg-body-tertiary" >
38- <div class =" container" >
39- <span class =" text-body-secondary" >Jeff Store by Jeferson Almeida since 2024 | v1.0.4</span >
40- </div >
41- </footer >
42- <script src =" ~/lib/jquery/dist/jquery.min.js" ></script >
43- <script src =" ~/lib/bootstrap/dist/js/bootstrap.bundle.min.js" type =" text/javascript" ></script >
44- <script src =" ~/js/script.js" type =" text/javascript" ></script >
45- <script src =" ~/js/site.js" type =" text/javascript" ></script >
46- @await RenderSectionAsync("Scripts", required: false)
47- </body >
48- </html >
2+ <html lang =" pt-BR" data-bs-theme =" light" data-pwa =" true" >
3+ <head >
4+ <meta charset =" utf-8" >
5+
6+ <!-- Viewport -->
7+ <meta name =" viewport" content =" width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, viewport-fit=cover" >
8+
9+ <!-- SEO Meta Tags -->
10+ <title >@ViewData ["Title"] - Jeff Store</title >
11+ <meta name =" description" content =" " >
12+ <meta name =" keywords" content =" " >
13+ <meta name =" author" content =" Jeferson Almeida" >
14+
15+ <!-- Webmanifest + Favicon / App icons -->
16+ <meta name =" mobile-web-app-capable" content =" yes" >
17+ <meta name =" apple-mobile-web-app-status-bar-style" content =" black" >
18+ <link rel =" manifest" href =" ~/manifest.json" >
19+ <link rel =" icon" type =" image/png" href =" ~/assets/app-icons/icon-32x32.png" sizes =" 32x32" >
20+ <link rel =" apple-touch-icon" href =" ~/assets/app-icons/icon-180x180.png" >
21+
22+
23+
24+ <!-- Preloaded local web font (Inter) -->
25+ <link rel =" preload" href =" ~/assets/fonts/inter-variable-latin.woff2" as =" font" type =" font/woff2" crossorigin >
26+
27+ <!-- Font icons -->
28+ <link rel =" preload" href =" ~/assets/icons/cartzilla-icons.woff2" as =" font" type =" font/woff2" crossorigin >
29+ <link rel =" stylesheet" href =" ~/assets/icons/cartzilla-icons.min.css" >
30+
31+ <!-- Vendor styles -->
32+ <link rel =" stylesheet" href =" ~/assets/vendor/swiper/swiper-bundle.min.css" >
33+ <link rel =" stylesheet" href =" ~/assets/vendor/choices.js/public/assets/styles/choices.min.css" >
34+
35+ <!-- Bootstrap + Theme styles -->
36+ <link rel =" preload" href =" ~/assets/css/theme.min.css" as =" style" >
37+ <link rel =" stylesheet" href =" ~/assets/css/theme.min.css" id =" theme-styles" >
38+ </head >
39+ <body >
40+ @RenderBody()
41+
42+
43+
44+
45+ <!-- Vendor scripts -->
46+ <script src =" ~/assets/vendor/swiper/swiper-bundle.min.js" ></script >
47+ <script src =" ~/assets/vendor/choices.js/public/assets/scripts/choices.min.js" ></script >
48+
49+
50+ <!-- Bootstrap + Theme scripts -->
51+ <script src =" ~/assets/js/theme.min.js" ></script >
52+
53+ @RenderSection( "Scripts", required: false)
54+ </body >
55+ </html >
0 commit comments