takielias / tablar

Tablar: A Laravel Dashboard Preset Based on Tabler HTML Template + Vite. https://tablar.ebuz.xyz/docs
https://tablar.ebuz.xyz
MIT License
272 stars 33 forks source link

HTML tag TITLE twice in master.blade.php and one suggestion #39

Closed raveiga closed 8 months ago

raveiga commented 8 months ago

Hi again

In /resources/views/master.blade.php the html tag appears twice:</p> <pre><code class="language-html"><title> @yield('title_prefix', config('tablar.title_prefix', '')) @yield('title', config('tablar.title', 'Tablar')) @yield('title_postfix', config('tablar.title_postfix', '')) </title> <title>Dashboard</title> <!-- CSS files --></code></pre> <p>Could you also put in the <strong>master.blade.php</strong> the <strong>html lang</strong> to be dynamic?</p> <pre><code class="language-html"><html lang="{{ Config::get('app.locale') }}"></code></pre> </div> </div> <div class="page-bar-simple"> </div> <div class="footer"> <ul class="body"> <li>© <script> document.write(new Date().getFullYear()) </script> Githubissues.</li> <li>Githubissues is a development platform for aggregating issues.</li> </ul> </div> <script src="https://cdn.jsdelivr.net/npm/jquery@3.5.1/dist/jquery.min.js"></script> <script src="/githubissues/assets/js.js"></script> <script src="/githubissues/assets/markdown.js"></script> <script src="https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@11.4.0/build/highlight.min.js"></script> <script src="https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@11.4.0/build/languages/go.min.js"></script> <script> hljs.highlightAll(); </script> </body> </html>