all repos — website @ 19b2c29b70f6d0921e5f9cc95169d93526a9ceda

personal website hosted at prithu.xyz, built using hugo

add 401 and 403 pages
Prithu Goswami prithugoswami524@gmail.com
Mon, 06 Jan 2020 18:45:11 +0530
commit

19b2c29b70f6d0921e5f9cc95169d93526a9ceda

parent

70976f73686ad9ed612e989b4055dc7527c62da7

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

jump to
A 401.html

@@ -0,0 +1,35 @@

+<!DOCTYPE html> +<html lang="en"> +<head> + + <meta charset="utf-8"> + <title>Prithu Goswami</title> + <meta name="description" content="Prithu Goswami's personal website"> + <meta name="author" content="Prithu Goswami"> + <!-- <meta name="viewport" content="width=device-width, initial-scale=1"> --> + + <link href="https://fonts.googleapis.com/css?family=Roboto+Mono:300,400,700" rel="stylesheet"> + <link rel="stylesheet" href="/css/main.css"> + <link rel="icon" type="img/png" href="/img/favicon.png"> + +</head> + +<body class"flex-body"> + <nav> + <ul> + <li><a href="/">About me</a></li> + <li><a href="/projects">Projects</a></li> + <li><a href="/blog">Blog</a></li> + <li><a href="/links">Links</a></li> + </ul> + </nav> + <section id="page404"> + <div class="shadow-box-error"> + <h1 class="error">401</h1> + <h2 class="sub-head">Unauthorized</h2> + </div> + </section> + +</body> + +</html>
A 403.html

@@ -0,0 +1,35 @@

+<!DOCTYPE html> +<html lang="en"> +<head> + + <meta charset="utf-8"> + <title>Prithu Goswami</title> + <meta name="description" content="Prithu Goswami's personal website"> + <meta name="author" content="Prithu Goswami"> + <!-- <meta name="viewport" content="width=device-width, initial-scale=1"> --> + + <link href="https://fonts.googleapis.com/css?family=Roboto+Mono:300,400,700" rel="stylesheet"> + <link rel="stylesheet" href="/css/main.css"> + <link rel="icon" type="img/png" href="/img/favicon.png"> + +</head> + +<body class"flex-body"> + <nav> + <ul> + <li><a href="/">About me</a></li> + <li><a href="/projects">Projects</a></li> + <li><a href="/blog">Blog</a></li> + <li><a href="/links">Links</a></li> + </ul> + </nav> + <section id="page404"> + <div class="shadow-box-error"> + <h1 class="error">403</h1> + <h2 class="sub-head">Forbidden</h2> + </div> + </section> + +</body> + +</html>