all repos — website @ a680017769e382a8be805868be6d41f4b5558e8a

personal website hosted at prithu.xyz, built using hugo

add template script
Prithu Goswami prithugoswami524@gmail.com
Sat, 11 Jan 2020 21:26:48 +0530
commit

a680017769e382a8be805868be6d41f4b5558e8a

parent

6b728ec0d1fd5d12e42caa38ef56b73fe845af22

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

jump to
A template-post.sh

@@ -0,0 +1,55 @@

+#!/usr/bin/bash + +postc=$(cat "$1") + +cat <<EOF +<!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> + <nav> + <ul> + <li><a href="/">About me</a></li> + <li><a href="/projects">Projects</a></li> + <li><a href="/blog.html">Blog</a></li> + <li><a href="/links">Links</a></li> + </ul> + </nav> + + <div class="bcontainer"> + <div class="bcontent"> + <h1>Post title goes here </h1> + <p class="post-date">Januaray 19, 2019</p> + <div class="post-labels"> + $( for a in tag1 tag2 tag3 + do + echo "<div class=post-label>$a</div>" + done + ) + <div class=post-label>Linux</div> + </div> + <div class="post-text"> + $postc + </div> + </div> + </div> + +</body> + +</html> +EOF