summaryrefslogtreecommitdiffstats
path: root/static/includes
diff options
context:
space:
mode:
authorrsiddharth <s@ricketyspace.net>2019-05-16 18:42:56 -0400
committerrsiddharth <s@ricketyspace.net>2019-05-16 18:42:56 -0400
commit48a499c2c1b999008c5a0d1f8931141b07225c4b (patch)
treee77362b008b203d46b1f1a1c2eaa5ff43e3d2cce /static/includes
parent7e509b64e1a22925be657b3137f8383d5cc2e87c (diff)
html -> static, img -> static/assets/img
Diffstat (limited to 'static/includes')
-rw-r--r--static/includes/body-close.html1
-rw-r--r--static/includes/body-open.html1
-rw-r--r--static/includes/footer.html14
-rw-r--r--static/includes/header-close.html1
-rw-r--r--static/includes/header-open.html4
-rw-r--r--static/includes/html-close.html1
-rw-r--r--static/includes/html-open.html2
-rw-r--r--static/includes/js.html3
-rw-r--r--static/includes/navbar.html34
9 files changed, 61 insertions, 0 deletions
diff --git a/static/includes/body-close.html b/static/includes/body-close.html
new file mode 100644
index 0000000..a446d53
--- /dev/null
+++ b/static/includes/body-close.html
@@ -0,0 +1 @@
+</body>
diff --git a/static/includes/body-open.html b/static/includes/body-open.html
new file mode 100644
index 0000000..335eec5
--- /dev/null
+++ b/static/includes/body-open.html
@@ -0,0 +1 @@
+<body>
diff --git a/static/includes/footer.html b/static/includes/footer.html
new file mode 100644
index 0000000..f9c01ad
--- /dev/null
+++ b/static/includes/footer.html
@@ -0,0 +1,14 @@
+<!-- start footer -->
+<footer class="footer">
+ <div class="content is-small">
+ <p>Copyright &copy; 2002-2019 Free Software Foundation of India.</p>
+
+ <p>Verbatim copying and distribution of this entire article is
+ permitted in any medium, provided this notice is preserved.</p>
+ </div>
+
+ <div class="footer-sister-orgs content is-small has-text-centered">
+ <p class="">FSF India has sister organizations in <a href="#">North America</a>, <a href="#">Europe</a>, and <a href="#">Latin America</a>.</p>
+ </div>
+</footer>
+<!-- end footer -->
diff --git a/static/includes/header-close.html b/static/includes/header-close.html
new file mode 100644
index 0000000..fd78248
--- /dev/null
+++ b/static/includes/header-close.html
@@ -0,0 +1 @@
+</head>
diff --git a/static/includes/header-open.html b/static/includes/header-open.html
new file mode 100644
index 0000000..067edce
--- /dev/null
+++ b/static/includes/header-open.html
@@ -0,0 +1,4 @@
+<head>
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+ <link rel="stylesheet" href="/assets/css/fsfi.css">
diff --git a/static/includes/html-close.html b/static/includes/html-close.html
new file mode 100644
index 0000000..5f85cab
--- /dev/null
+++ b/static/includes/html-close.html
@@ -0,0 +1 @@
+</html>
diff --git a/static/includes/html-open.html b/static/includes/html-open.html
new file mode 100644
index 0000000..ce8fe85
--- /dev/null
+++ b/static/includes/html-open.html
@@ -0,0 +1,2 @@
+<!DOCTYPE html>
+<html lang="en">
diff --git a/static/includes/js.html b/static/includes/js.html
new file mode 100644
index 0000000..2cbc2e7
--- /dev/null
+++ b/static/includes/js.html
@@ -0,0 +1,3 @@
+<!-- start JS -->
+<script src="/assets/js/fsfi.js"></script>
+<!-- end JS -->
diff --git a/static/includes/navbar.html b/static/includes/navbar.html
new file mode 100644
index 0000000..7bd7102
--- /dev/null
+++ b/static/includes/navbar.html
@@ -0,0 +1,34 @@
+<!-- start navbar -->
+<nav class="navbar" aria-label="main navigation">
+ <div class="container">
+ <div class="navbar-brand">
+ <a class="navbar-item" href="/">
+ <img src="/assets/img/logo.png" width="280" height="142" alt="[ FSFI Logo ]">
+ </a>
+
+ <a role="button" class="navbar-burger burger" aria-label="menu" aria-expanded="false" data-target="fsfi-nav-items">
+ <span aria-hidden="true"></span>
+ <span aria-hidden="true"></span>
+ <span aria-hidden="true"></span>
+ </a>
+ </div>
+
+ <div id="fsfi-nav-items" class="navbar-menu is-lowercase">
+ <div class="navbar-end">
+ <div class="navbar-item">
+ <a href="/about">About</a>
+ </div>
+ <div class="navbar-item">
+ <a href="/join">Join</a>
+ </div>
+ <div class="navbar-item">
+ <a href="/volunteer">Volunteer</a>
+ </div>
+ <div class="navbar-item">
+ <a href="/contact">Contact</a>
+ </div>
+ </div>
+ </div>
+</div>
+</nav>
+<!-- end navbar -->