hugo-site/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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
{{ partial "head.html" }} <body> {{ partial "nav.html" }} <section id="intro"> <div class="container"> <svg id="stripes-green" width="237" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 237 209" preserveAspectRatio="xMidYMid meet"> <rect x="21" y="16" width="162" height="13" rx="6" transform="rotate(39 21 16)" fill="#8BEF89"/> <rect x="52" y="68" width="205" height="13" rx="6" transform="rotate(39 52 68)" fill="#8BEF89"/> <rect x="44" y="8" width="189" height="13" rx="6" transform="rotate(39 44 8)" fill="#8BEF89"/> <circle cx="152" cy="132" r="6" transform="rotate(39 152 132)" fill="#8BEF89"/> <circle cx="38" cy="65" r="6" transform="rotate(39 38 65)" fill="#8BEF89"/> </svg> <svg id="stripes-purp"width="204" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 204 182" preserveAspectRatio="xMidYMid meet"> <rect x="21" y="16" width="162" height="13" rx="6" transform="rotate(39 21 16)" fill="#B554E3"/> <rect x="52" y="68" width="162" height="13" rx="6" transform="rotate(39 52 68)" fill="#B554E3"/> <rect x="44" y="8" width="162" height="13" rx="6" transform="rotate(39 44 8)" fill="#B554E3"/> <circle cx="152" cy="132" r="6" transform="rotate(39 152 132)" fill="#B554E3"/> <circle cx="38" cy="65" r="6" transform="rotate(39 38 65)" fill="#B554E3"/> </svg> <div class="shadow-box"> <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> <div class="head-text"> <h1>Prithu Goswami</h1> </div> <div class="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> <!-- #b554e3 --> <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> <div class=container> <h1>Some of my works</h1> <div class="shadow-box"> <div class="project-text"> {{ range .Site.Data.projects }} <a href="{{ .url }}" target="_blank"> <div class="project-item"> <h2>- {{ .title }}</h2> <p>{{ .description }}</p> </div> </a> {{ end }} </div> <!-- <div class=btn id=project-cta>View All</div> --> </div> </div> </section> <section id=projects> <div class=container> <h1>I also write about stuff</h1> <div class="shadow-box"> <div class="project-text"> {{ range sort (where .Site.RegularPages "Section" "posts") "Date" }} <div class="project-item"> <h2>- {{ .Title }}</h2> <p>{{ .Kind }}, {{ .Section }}<p> </div> {{ end }} </div> <!-- <div class=btn id=project-cta>View All</div> --> </div> </div> </section> <section id=write> <div class=container> </div> </section> </body> </html>