layouts/index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{{ partial "head.html" . }} <body> {{ partial "nav.html" }} <section id="intro" class="page-section"> <div class="container"> <div class="shadow-box"> <svg id="stripes-green" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 193.629 194.247"> <rect fill="#8bef89" transform="rotate(39)" rx="6" height="13" width="162" y=".709" x="7.97"/> <rect fill="#8bef89" transform="rotate(39)" rx="6" height="13" width="205" y="21.612" x="64.786"/> <rect fill="#8bef89" transform="rotate(39)" rx="6" height="13" width="189" y="-19.983" x="20.81"/> <circle fill="#8bef89" transform="rotate(39)" r="6" cy="8.417" cx="182.777"/> <circle fill="#8bef89" transform="rotate(39)" r="6" cy="28.091" cx="52.018"/> </svg> <svg id="stripes-purp" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 160.212 167.186"> <rect fill="#b554e3" transform="rotate(39)" rx="6" height="13" width="162" y=".709" x="7.97"/> <rect fill="#b554e3" transform="rotate(39)" rx="6" height="13" width="162" y="21.612" x="64.786"/> <rect fill="#b554e3" transform="rotate(39)" rx="6" height="13" width="162" y="-19.983" x="20.81"/> <circle fill="#b554e3" transform="rotate(39)" r="6" cy="8.417" cx="182.777"/> <circle fill="#b554e3" transform="rotate(39)" r="6" cy="28.091" cx="52.018"/> </svg> <svg id="triangle" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 59" preserveAspectRatio="xMidYMid meet"> <path d="M34 0l47 9 47 10L0 59z" /> </svg> <svg id="circle" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 74 74" preserveAspectRatio="xMidYMid meet"> <circle cx="37" cy="37" r="37" /> </svg> <h1>Prithu Goswami</h1> <div id="intro-text"> <p> Hey there, I am Prithu Goswami. I am currently studying at PES University South Campus, Bangalore(PESIT-BSC) where I am persuing a Bachelor's degree in Computer Science and Engineering. </p> <p> I love to build new things and design solutions to problems. I have been fascinated by computers and technology since a very young age. </p> </div> <img id="profile-pic" src="./img/duotone-profile-small.jpeg"> <div id="socials"> <a href="mailto:prithugoswami524@gmail.com"> <div class="sb mail"> <img src="/img/mail.svg"> </div> </a> <a href="https://github.com/prithugoswami" target="_blank"> <div class="sb github"> <img src="/img/github.svg"> </div> </a> <a href="https://dribbble.com/prithugoswami" target="_blank"> <div class="sb dribbble"> <img src="/img/dribbble.svg"> </div> </a> <a href="https://twitter.com/prithu524" target="_blank"> <div class="sb twitter"> <img src="/img/twitter.svg"> </div> </a> </div> </div> </div> <div id="socials-2"> <a href="mailto:prithugoswami524@gmail.com"> <div class="sb mail"> <img src="/img/mail.svg"> </div> </a> <a href="https://github.com/prithugoswami" target="_blank"> <div class="sb github"> <img src="/img/github.svg"> </div> </a> <a href="https://dribbble.com/prithugoswami" target="_blank"> <div class="sb dribbble"> <img src="/img/dribbble.svg"> </div> </a> <a href="https://twitter.com/prithu524" target="_blank"> <div class="sb twitter"> <img src="/img/twitter.svg"> </div> </a> </div> </section> <section id=projects class="page-section"> <div class=container> <h1>Some of my works</h1> <div class="shadow-box"> <div class="section-text"> {{ range .Site.Data.projects }} <a href="{{ .url }}"> <div class="section-item"> <h2>{{ .title }}</h2> <p class="section-sub-text">{{ .description }}</p> </div> </a> {{ end }} </div> <!-- <a href="/projects/"><div class=btn id=project-cta>View All</div></a> --> </div> </div> </section> <section id=writeups class="page-section"> <div class=container> <h1>I also write about stuff</h1> <div class="shadow-box"> <div class="section-text"> {{ range sort (where .Site.RegularPages "Section" "posts") "Date" "desc" | first 3}} <a href="{{ .RelPermalink }}"> <div class=section-item> <h2>{{ .Title }}</h2> <p class="section-sub-text">{{ with .Params.description }}{{ . }}{{ else }}{{.Summary | truncate 110 }}{{ end }}</p> <!-- <p>{{ .Date.Format "2 Jan 2006" }}<p> --> </div> </a> {{ end }} </div> <a href="/posts/"><div class=btn id=writeup-cta>View All</div></a> </div> </div> </section> {{ partial "footer.html" . }} </body> </html>