-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
195 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,16 +10,17 @@ | |
<title>skanhama</title> | ||
{% endif %} | ||
|
||
<!-- Internal Refs --> | ||
<!-- Internal Stylesheet --> | ||
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}"> | ||
<script async src="{{ url_for("static", filename="scripts.js") }}"></script> | ||
|
||
<!-- External Refs --> | ||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script> | ||
<link rel="preconnect" href="https://fonts.googleapis.com"> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | ||
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700&family=Work+Sans:wght@300;400&display=swap" rel="stylesheet"> | ||
<script defer src="https://kit.fontawesome.com/5dbb6979db.js" crossorigin="anonymous"></script> | ||
<script src="https://unpkg.com/[email protected]/dist/dropzone-min.js"></script> | ||
<link href="https://unpkg.com/[email protected]/dist/dropzone.css" rel="stylesheet" type="text/css" /> | ||
</head> | ||
<body> | ||
<div class="main"> | ||
|
@@ -48,14 +49,14 @@ | |
</ul> | ||
</div> | ||
</div> | ||
<i id="nav-search-icon" class="fas fa-search icon"></i> | ||
<i id="nav-search-icon" class="fas fa-search icon icon-md icon-padded"></i> | ||
</nav> | ||
<div class="header-inner-right"> | ||
{% if current_user.is_authenticated %} | ||
<div class="header-inner-right-notifications"> | ||
<i class="far fa-bell icon"></i> | ||
<span class="badge" id="badge-notifications">23</span> | ||
<i id="accountMenuIcon" class="fas fa-user-circle btn-dropdown icon"></i> | ||
<i id="accountMenuIcon" class="fas fa-user-circle btn-dropdown icon icon-md icon-padded"></i> | ||
<div id="dropdownAccount" class="dropdown-content"> | ||
<div id="dropdownAccountName"> | ||
<h2>{{ current_user.username }}</h2> | ||
|
@@ -92,5 +93,7 @@ <h2>{{ current_user.username }}</h2> | |
</div> | ||
</div> | ||
</div> | ||
<!-- Internal Scripts --> | ||
<script async src="{{ url_for("static", filename="scripts.js") }}"></script> | ||
</body> | ||
</html> | ||
</html> |
Oops, something went wrong.