summaryrefslogtreecommitdiffhomepage
path: root/_includes
diff options
context:
space:
mode:
authorLi Zhineng <[email protected]>2025-08-08 23:10:01 +0800
committerLi Zhineng <[email protected]>2025-08-08 23:10:01 +0800
commite5685547b3233516585f6a5e20ec24ef3351fe2f (patch)
tree5aac605bfb3be9deff153e29f4903bb6037ab8ad /_includes
parenta78acd0046d26b3047fa085e02517583a8f5d9b1 (diff)
downloadopenairmx.org-e5685547b3233516585f6a5e20ec24ef3351fe2f.tar.gz
openairmx.org-e5685547b3233516585f6a5e20ec24ef3351fe2f.zip
refresh ui
Diffstat (limited to '_includes')
-rw-r--r--_includes/footer.html3
-rw-r--r--_includes/head.html10
-rw-r--r--_includes/header.html18
3 files changed, 31 insertions, 0 deletions
diff --git a/_includes/footer.html b/_includes/footer.html
new file mode 100644
index 0000000..583377a
--- /dev/null
+++ b/_includes/footer.html
@@ -0,0 +1,3 @@
+<footer class="site-footer">
+ <p>Made with love in Foshan, China.</p>
+</footer>
diff --git a/_includes/head.html b/_includes/head.html
new file mode 100644
index 0000000..b7b2a28
--- /dev/null
+++ b/_includes/head.html
@@ -0,0 +1,10 @@
+<head>
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+ {%- seo -%}
+ <link rel="stylesheet" href="{{ '/assets/main.css' | relative_url }}">
+ {%- feed_meta -%}
+ <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=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap" rel="stylesheet">
+</head>
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>