aboutsummaryrefslogtreecommitdiff
path: root/bcst/themes/qhungg/index.html
diff options
context:
space:
mode:
authorLoic Guegan <manzerbredes@mailbox.org>2020-04-23 12:53:54 +0200
committerLoic Guegan <manzerbredes@mailbox.org>2020-04-23 12:53:54 +0200
commitf3db5473b38d010a774c5e1af0f63ceab70371db (patch)
tree408f52839abc6e4c08999d2d16e8a77bfd768242 /bcst/themes/qhungg/index.html
parent372d986c033aa43708615ecd9a7121b5942602ce (diff)
Add qhungg theme
Diffstat (limited to 'bcst/themes/qhungg/index.html')
-rw-r--r--bcst/themes/qhungg/index.html27
1 files changed, 27 insertions, 0 deletions
diff --git a/bcst/themes/qhungg/index.html b/bcst/themes/qhungg/index.html
new file mode 100644
index 0000000..d344fdc
--- /dev/null
+++ b/bcst/themes/qhungg/index.html
@@ -0,0 +1,27 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <title>{{home}}</title>
+ <meta charset ="UTF-8">
+ <link rel="stylesheet" type="text/css" href="style/style.css">
+ <link rel="shortcut icon" href="icon/leaf.png" />
+ </head>
+<body>
+ <div class="box">
+ {% for key,value in bookmarks.items() %}
+ <div class="hvr-grow">
+ <h1>{{key}}</h1>
+ <ul>
+ {% for link_name,url in value.items() %}
+ <li><a href="{{url}}">{{link_name}}</a></li>
+ {% endfor %}
+ </ul>
+ </div>
+ {% endfor %}
+
+ <form action="https://www.google.com/search" method="GET" class="hvr-shrink">
+ <input type="text" name="q" placeholder="Search" autofocus="autofocus">
+ </form>
+ </div>
+</body>
+</html>