|
1 | 1 | <!DOCTYPE html> |
2 | 2 | <html lang="en"> |
3 | 3 | <head> |
4 | | - |
| 4 | + <meta charset="utf-8" /> |
5 | 5 | {{ include('@partial/meta.html.twig') }} |
6 | | - {% block canonical %}<link rel="canonical" href="{{ url(routeName ?? null) }}" />{% endblock %} |
7 | | - <link rel="apple-touch-icon" sizes="180x180" href="{{ asset('images/app/favicon/apple-touch-icon.png') }}"> |
| 6 | + {% block canonical %}<link rel="canonical" href="{{ url(routeName ?? null) }}" /> |
| 7 | + {% endblock %}<link rel="apple-touch-icon" sizes="180x180" href="{{ asset('images/app/favicon/apple-touch-icon.png') }}"> |
8 | 8 | <link rel="icon" type="image/png" sizes="32x32" href="{{ asset('images/app/favicon/favicon-32x32.png') }}"> |
9 | 9 | <link rel="icon" type="image/png" sizes="16x16" href="{{ asset('images/app/favicon/favicon-16x16.png') }}"> |
10 | 10 | <link rel="manifest" href="{{ asset('images/app/favicon/site.webmanifest') }}"> |
11 | 11 | <link href="https://use.fontawesome.com/releases/v5.0.6/css/all.css" rel="stylesheet" /> |
12 | 12 | <link href="https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600" rel="stylesheet"> |
13 | 13 | <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600" rel="stylesheet"> |
14 | | - |
15 | 14 | <link href="{{ asset('css/app.css') }}" rel="stylesheet" /> |
16 | | - |
17 | | - {% block stylesheets %}{% endblock %} |
| 15 | + {% block stylesheets %} |
| 16 | + {% endblock %} |
18 | 17 | </head> |
19 | 18 | <body class="app d-flex flex-column min-vh-100 bg-light text-secondary {% block body_class %}{% endblock %}"> |
20 | | - |
21 | 19 | <header class="app-header sticky-top bg-white border-bottom shadow-sm"> |
22 | 20 | <nav class="navbar navbar-expand-lg navbar-light py-2"> |
23 | 21 | <div class="container-fluid px-4 px-lg-5"> |
24 | 22 | <a href="/" class="navbar-brand d-flex align-items-center"> |
25 | 23 | <img src="{{ asset('images/app/logo.svg') }}" |
26 | 24 | onerror="this.onerror=null; this.src='{{ asset('images/app/logo.png') }}';" |
27 | 25 | alt="Dotkernel" |
28 | | - style="height: 35px;" /> |
| 26 | + style="height: 50px;" /> |
29 | 27 | </a> |
30 | | - |
31 | 28 | <button class="navbar-toggler border-0" type="button" data-bs-toggle="collapse" data-bs-target="#navbarHeader"> |
32 | 29 | <span class="navbar-toggler-icon"></span> |
33 | 30 | </button> |
34 | | - |
35 | 31 | <div class="collapse navbar-collapse" id="navbarHeader"> |
36 | 32 | <ul class="navbar-nav mx-auto gap-lg-4"> |
37 | 33 | <li class="nav-item"> |
38 | | - <a class="nav-link px-3 fw-semibold transition-all" href="{{ url('page::blog') }}">Posts</a> |
| 34 | + <a class="nav-link px-3 fw-semibold fs-5 transition-all" target="_blank" href="https://docs.dotkernel.org/">Documentation</a> |
39 | 35 | </li> |
40 | 36 | <li class="nav-item"> |
41 | | - <a class="nav-link px-3 fw-semibold transition-all" href="{{ url('page::categories') }}">Categories</a> |
| 37 | + <a class="nav-link px-3 fw-semibold fs-5 transition-all" href="{{ url('page::dotkernel-packages-oss-lifecycle') }}">Packages Lifecycle</a> |
42 | 38 | </li> |
43 | 39 | <li class="nav-item"> |
44 | | - <a class="nav-link px-3 fw-semibold transition-all" href="{{ url('page::about') }}">About Us</a> |
| 40 | + <a class="nav-link px-3 fw-semibold fs-5 transition-all" href="{{ url('page::category-resource', {slug: 'how-to'}) }}">How to's</a> |
| 41 | + </li> |
| 42 | + <li class="nav-item"> |
| 43 | + <a class="nav-link px-3 fw-semibold fs-5 transition-all" href="{{ url('page::blog') }}">Blog</a> |
| 44 | + </li> |
| 45 | + <li class="nav-item"> |
| 46 | + <a class="nav-link px-3 fw-semibold fs-5 transition-all" href="{{ url('page::categories') }}">Categories</a> |
45 | 47 | </li> |
46 | 48 | </ul> |
47 | | - |
48 | 49 | <div class="d-none d-lg-block"> |
49 | | - <a href="#" class="btn btn-primary rounded-pill px-4">Contact</a> |
| 50 | + <a href="{{ url('page::contact') }}" class="btn btn-primary rounded-pill px-4">Contact</a> |
50 | 51 | </div> |
51 | 52 | </div> |
52 | 53 | </div> |
|
57 | 58 | <header class="content-header mb-4"> |
58 | 59 | {% block page_title %}{% endblock %} |
59 | 60 | </header> |
60 | | - |
61 | 61 | <section class="content"> |
62 | 62 | {% block content %}{% endblock %} |
63 | 63 | </section> |
64 | 64 | </div> |
65 | 65 | </main> |
66 | | - |
67 | 66 | <footer class="app-footer bg-white border-top py-4 mt-auto text-muted"> |
68 | 67 | <div class="container d-flex flex-column flex-md-row justify-content-between align-items-center gap-2"> |
69 | 68 | <p class="enjoy text-uppercase tracking-wider small fw-bold text-primary mb-0"> |
|
74 | 73 | </p> |
75 | 74 | </div> |
76 | 75 | </footer> |
77 | | - |
78 | 76 | <script src="{{ asset('js/app.js') }}"></script> |
79 | 77 | {% block javascript %}{% endblock %} |
80 | 78 | </body> |
|
0 commit comments