Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/kskarthik/monopriv.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkarthik <kskarthik@gitlab.io>2019-12-08 14:14:22 +0300
committerkarthik <kskarthik@gitlab.io>2019-12-08 14:14:22 +0300
commit518adf170a14de71e7bb59b700097087c6a58ea5 (patch)
treee464434064e021b11bbbe39dbd6c88a4c0f3a5ef
parent11396fc02f5da0e189df5315378d262d39cdb9a2 (diff)
fix nav links, add name in LICENSE
-rw-r--r--LICENSE2
-rw-r--r--layouts/partials/header.html6
2 files changed, 4 insertions, 4 deletions
diff --git a/LICENSE b/LICENSE
index 46fe619..2aef2b7 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,6 +1,6 @@
The MIT License (MIT)
-Copyright (c) 2019 YOUR_NAME_HERE
+Copyright (c) 2019 Sai Karthik
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
diff --git a/layouts/partials/header.html b/layouts/partials/header.html
index e0801a1..b463f08 100644
--- a/layouts/partials/header.html
+++ b/layouts/partials/header.html
@@ -7,8 +7,8 @@
<title>{{ if .IsHome }}{{ .Site.Title }}{{ else }}{{ .Title }}{{ end }}</title>
<nav class="navbar text-center sticky-top bg-white mt-2 mb-1">
<a href='{{ .Site.BaseURL }}'><span class="btn btn-sm btn-outline-primary">Home</span></a>
- <a href='{{ "/about" | absURL }}'><span class="btn btn-sm btn-outline-secondary">About</span></a>
- <a href='{{ "/post" | absURL }}'><span class="btn btn-sm btn-outline-success">Blog</span></a>
- <a href='{{ "/tags" | absURL }}'><span class="btn btn-sm btn-outline-warning">Tags</span></a>
+ <a href='{{ "about" | absURL }}'><span class="btn btn-sm btn-outline-secondary">About</span></a>
+ <a href='{{ "post" | absURL }}'><span class="btn btn-sm btn-outline-success">Blog</span></a>
+ <a href='{{ "tags" | absURL }}'><span class="btn btn-sm btn-outline-warning">Tags</span></a>
</nav>
</head>