mirror of
https://github.com/smittix/intercept.git
synced 2026-04-24 06:40:00 -07:00
Wire global navbar across pages
This commit is contained in:
@@ -6,8 +6,9 @@
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>iNTERCEPT // Remote Agents</title>
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="stylesheet" href="{{ url_for('static', filename='css/index.css') }}">
|
||||
<link rel="stylesheet" href="{{ url_for('static', filename='css/agents.css') }}">
|
||||
<link rel="stylesheet" href="{{ url_for('static', filename='css/index.css') }}">
|
||||
<link rel="stylesheet" href="{{ url_for('static', filename='css/agents.css') }}">
|
||||
<link rel="stylesheet" href="{{ url_for('static', filename='css/global-nav.css') }}">
|
||||
<style>
|
||||
.agents-container {
|
||||
max-width: 1200px;
|
||||
@@ -280,7 +281,7 @@
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<header style="padding: 15px 20px; display: flex; align-items: center; gap: 12px;">
|
||||
<header style="padding: 15px 20px; display: flex; align-items: center; gap: 12px;">
|
||||
<div class="logo">
|
||||
<svg width="40" height="40" viewBox="0 0 100 100" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M15 30 Q5 50, 15 70" stroke="#00d4ff" stroke-width="3" fill="none" stroke-linecap="round" opacity="0.5"/>
|
||||
@@ -298,7 +299,9 @@
|
||||
<h1 style="margin: 0;">
|
||||
iNTERCEPT <span class="tagline">// Remote Agents</span>
|
||||
</h1>
|
||||
</header>
|
||||
</header>
|
||||
|
||||
{% include 'partials/nav.html' with context %}
|
||||
|
||||
<div class="agents-container">
|
||||
<div class="nav-links">
|
||||
@@ -584,5 +587,6 @@
|
||||
// Load agents on page load
|
||||
document.addEventListener('DOMContentLoaded', loadAgents);
|
||||
</script>
|
||||
</body>
|
||||
<script src="{{ url_for('static', filename='js/core/global-nav.js') }}"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user