all repos — site @ 17ac23fb0f8e8ccfeff85738d801b84edfe81b14

source for my site, found at icyphox.sh

fix(header): links don't open in a new tab anymore

Signed-off-by: Anirudh <icyph0x@pm.me>
Anirudh icyph0x@pm.me
Wed, 05 Sep 2018 15:52:10 +0530
commit

17ac23fb0f8e8ccfeff85738d801b84edfe81b14

parent

2cc4edd2b75ed0941bf1b5b5f181ced8e634c651

2 files changed, 2 insertions(+), 2 deletions(-)

jump to
M build/index.htmlbuild/index.html

@@ -24,7 +24,7 @@

<div class="container"> <header> <div class="right header"> - <a href="/" target="_blank">Home</a> <a href="/blog" target="_blank">Blog</a> <a href="/about" target="_blank">About</a> + <a href="/">Home</a> <a href="/blog">Blog</a> <a href="/about">About</a> </div> </header>
M config.pyconfig.py

@@ -2,7 +2,7 @@ # config.py - Vite's configuration script

title = 'Anirudh Oppiliappan' author = '' -header = '<a href="/" target="_blank">Home</a> <a href="/blog" target="_blank">Blog</a> <a href="/about" target="_blank">About</a>' +header = '<a href="/">Home</a> <a href="/blog">Blog</a> <a href="/about">About</a>' footer = '&copy; 2018 — <a href="mailto:icyph0x@pm.me">icyph0x@pm.me</a>' template = 'index.html' # default is index.html