|
4 | 4 | 'macros/lectures.html' import lecture_list %} |
5 | 5 |
|
6 | 6 | <head> |
7 | | - <meta charset="utf-8" /> |
8 | | - <meta |
9 | | - name="viewport" |
10 | | - content="width=device-width, initial-scale=1, shrink-to-fit=no" |
11 | | - /> |
12 | | - |
13 | | - <link |
14 | | - rel="stylesheet" |
15 | | - href="https://cdn.jsdelivr.net/gh/devicons/devicon@v2.15.1/devicon.min.css" |
16 | | - /> |
17 | | - |
18 | | - <link |
19 | | - href="https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap" |
20 | | - rel="stylesheet" |
21 | | - /> |
22 | | - |
23 | | - <title>CodeColts</title> |
24 | | - |
25 | | - <!-- Bootstrap core CSS --> |
26 | | - <link |
27 | | - href="{{ url_for('static', filename='vendor/bootstrap/css/bootstrap.min.css') }}" |
28 | | - rel="stylesheet" |
29 | | - /> |
30 | | - |
31 | | - <!-- Additional CSS Files --> |
32 | | - <link |
33 | | - rel="stylesheet" |
34 | | - href="{{ url_for('static', filename='assets/css/fontawesome.css') }}" |
35 | | - /> |
36 | | - <link |
37 | | - rel="stylesheet" |
38 | | - href="{{ url_for('static', filename='assets/css/templatemo-cyborg-gaming.css') }}" |
39 | | - /> |
40 | | - <link |
41 | | - rel="stylesheet" |
42 | | - href="{{ url_for('static', filename='assets/css/owl.css') }}" |
43 | | - /> |
44 | | - <link |
45 | | - rel="stylesheet" |
46 | | - href="{{ url_for('static', filename='assets/css/animate.css') }}" |
47 | | - /> |
48 | | - <link |
49 | | - rel="stylesheet" |
50 | | - href="https://unpkg.com/swiper@7/swiper-bundle.min.css" |
51 | | - /> |
52 | | - <!-- |
53 | | -
|
54 | | -TemplateMo 579 Cyborg Gaming |
55 | | -
|
56 | | -https://templatemo.com/tm-579-cyborg-gaming |
57 | | -
|
58 | | ---> |
| 7 | + {% include 'components/headmeta.html' %} |
59 | 8 | </head> |
60 | 9 |
|
61 | 10 | <body> |
|
73 | 22 | <!-- ***** Preloader End ***** --> |
74 | 23 |
|
75 | 24 | <!-- ***** Header Area Start ***** --> |
76 | | - <header class="header-area header-sticky"> |
77 | | - <div class="container"> |
78 | | - <div class="row"> |
79 | | - <div class="col-12"> |
80 | | - <nav class="main-nav"> |
81 | | - <!-- ***** Logo Start ***** --> |
82 | | - <a href="{{ url_for('index') }}" class="logo"> |
83 | | - <img |
84 | | - src="{{ url_for('static', filename='assets/images/logo.png') }}" |
85 | | - alt="" |
86 | | - /> |
87 | | - </a> |
88 | | - <!-- ***** Logo End ***** --> |
89 | | - <!-- ***** Search End ***** --> |
90 | | - <div class="search-input"> |
91 | | - <form id="search" action="#"> |
92 | | - <input |
93 | | - type="text" |
94 | | - placeholder="Type Something" |
95 | | - id="searchText" |
96 | | - name="searchKeyword" |
97 | | - onkeypress="handle" |
98 | | - /> |
99 | | - <i class="fa fa-search"></i> |
100 | | - </form> |
101 | | - </div> |
102 | | - <!-- ***** Search End ***** --> |
103 | | - <!-- ***** Menu Start ***** --> |
104 | | - <ul class="nav"> |
105 | | - <li><a href="{{ url_for('index') }}" id="home">Home</a></li> |
106 | | - <li> |
107 | | - <a href="{{ url_for('browse') }}" id="browse">Browse</a> |
108 | | - </li> |
109 | | - <li> |
110 | | - <a href="{{ url_for('details') }}" id="details">Details</a> |
111 | | - </li> |
112 | | - <li> |
113 | | - <a href="{{ url_for('profile') }}" id="profile" |
114 | | - >Profile |
115 | | - <img |
116 | | - src="{{ url_for('static', filename='assets/images/profile-header.jpg') }}" |
117 | | - alt="" |
118 | | - /></a> |
119 | | - </li> |
120 | | - <!-- Add more items as required --> |
121 | | - </ul> |
122 | | - |
123 | | - <script> |
124 | | - // Get the current page URL path |
125 | | - var currentPath = window.location.pathname; |
126 | | - |
127 | | - // Get the menu item with a matching URL and add the "active" class |
128 | | - if (currentPath === "{{ url_for('index') }}") { |
129 | | - document.getElementById("home").classList.add("active"); |
130 | | - } else if (currentPath === "{{ url_for('browse') }}") { |
131 | | - document.getElementById("browse").classList.add("active"); |
132 | | - } else if (currentPath === "{{ url_for('details') }}") { |
133 | | - document.getElementById("details").classList.add("active"); |
134 | | - } else if (currentPath === "{{ url_for('profile') }}") { |
135 | | - document.getElementById("profile").classList.add("active"); |
136 | | - } |
137 | | - </script> |
138 | | - |
139 | | - <a class="menu-trigger"> |
140 | | - <span>Menu</span> |
141 | | - </a> |
142 | | - <!-- ***** Menu End ***** --> |
143 | | - </nav> |
144 | | - </div> |
145 | | - </div> |
146 | | - </div> |
147 | | - </header> |
| 25 | + {% include 'components/navbar.html' %} |
148 | 26 | <!-- ***** Header Area End ***** --> |
149 | 27 | <div class="container"> |
150 | 28 | <div class="row"> |
|
0 commit comments