summaryrefslogtreecommitdiffhomepage
path: root/_includes/header.html
diff options
context:
space:
mode:
authorLi Zhineng <[email protected]>2025-08-08 23:14:06 +0800
committerGitHub <[email protected]>2025-08-08 23:14:06 +0800
commitcc9e192db6f1327ca152ec3d0a217615d0bdd047 (patch)
tree5aac605bfb3be9deff153e29f4903bb6037ab8ad /_includes/header.html
parenta78acd0046d26b3047fa085e02517583a8f5d9b1 (diff)
parente5685547b3233516585f6a5e20ec24ef3351fe2f (diff)
downloadopenairmx.org-cc9e192db6f1327ca152ec3d0a217615d0bdd047.tar.gz
openairmx.org-cc9e192db6f1327ca152ec3d0a217615d0bdd047.zip
Merge pull request #1 from openairmx/ui
Implement UI
Diffstat (limited to '_includes/header.html')
-rw-r--r--_includes/header.html18
1 files changed, 18 insertions, 0 deletions
diff --git a/_includes/header.html b/_includes/header.html
new file mode 100644
index 0000000..8560642
--- /dev/null
+++ b/_includes/header.html
@@ -0,0 +1,18 @@
+<header class="site-header">
+ <div class="logo">
+ <a href="{{ '/' | relative_url }}">
+ <img src="{{ '/assets/images/logo.svg' | relative_url }}" alt="Open AIRMX" width="118" height="12" />
+ </a>
+ </div>
+
+ <nav class="site-nav">
+ <a href="{{ '/' | relative_url }}" class="nav-link {% if page.url == '/' %}active{% endif %}">
+ Introduction
+ </a>
+
+ {% capture p %}{% post_url 2025-07-23-set-up-mock-server %}{% endcapture %}
+ <a href="{{ p | relative_url }}" class="nav-link {% if page.url == p %}active{% endif %}">
+ Set up mock server
+ </a>
+ </nav>
+</header>