all repos — website @ 609e6dc67d24b8c77a4a3c23e34ef7ff228275bc

personal website hosted at prithu.xyz, built using hugo

add blog single.html
Prithu Goswami prithugoswami524@gmail.com
Fri, 01 May 2020 17:10:29 +0530
commit

609e6dc67d24b8c77a4a3c23e34ef7ff228275bc

parent

d217ca33c36fd43bab37da393e4d4bc6c0e3f1cc

1 files changed, 39 insertions(+), 0 deletions(-)

jump to
A hugo-site/layouts/blog/single.html

@@ -0,0 +1,39 @@

+<!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="stylesheet" href="/css/blog.css"> + <link rel="icon" type="img/png" href="/img/favicon.png"> + +</head> + +<body> + <p class="wip">WIP</p> + {{ partial "nav.html" }} + + <div class="bcontainer"> + <div class="bcontent"> + <h1>{{ .Title }}</h1> + <p class="post-date">{{ .Date.Format "January 02, 2006" }}</p> + <div class="post-labels"> + {{ range .Params.tags }} + <div class=post-label>{{ . }}</div> + {{ end }} + </div> + <div class="post-text"> + {{ .Content }} + </div> + </div> + </div> + +</body> + +</html>