|
- {{ define "title" -}}
- {{ .Site.Title }}
- {{- end }}
- {{ define "header" }}
- {{ partial "masthead.html" . }}
- {{ end }}
- {{ define "main" }}
- <header>
- <h1>{{ .Title }}</h1>
- </header>
-
- <div class="leader">
- <img src="/wp-content/uploads/me.jpg" class="myimage">
- <div>Hello World 👋, I'm Rohan, and welcome to my homepage.</div>
- </div>
-
- <br>
- <h2>About</h2>
- I’m a Software Developer working at <a class="no-underline text-grey-dark" href="https://zerodha.com/products">Zerodha Tech</a>.
- <br>
- <br>
- My latest sideproject is <a class="no-underline text-grey-dark" href="https://upi.link/">upi.link</a>, a small and nifty
- programmable UPI shortlink generator.
- <br>
- <br>
- <li>
- <ul><b>github</b>: <a href="https://github.com/rhnvrm">https://github.com/rhnvrm</a></ul>
- <ul><b>keybase</b>: <a href="https://keybase.io/rhnvrm">https://keybase.io/rhnvrm</a></ul>
- <ul><b>twitter</b>: <a href="https://twitter.com/rhnvrm">https://twitter.com/rhnvrm</a></ul>
- <ul><b>linkedin</b>: <a href="https://www.linkedin.com/in/rhnvrm/">https://www.linkedin.com/in/rhnvrm/</a></ul>
- <ul><b>youtube</b>: <a href="https://www.youtube.com/user/TheRohanVerma">https://www.youtube.com/user/TheRohanVerma</a></ul>
- </li>
- <br>
- <br>
- <h2>Blog</h2>
-
- You can read my <a class="no-underline text-grey-dark" href="/blog">blog</a> where
- I try to write about what I am doing and things I find interesting. I have organized my blog using categories
- and tags. You can navigate through my blog by using them, or if you prefer to view by date, you can visit
- <a href="blog_list">the blog listing page</a>.
- <br>
- <br>
-
- <section>
- <b>categories</b>:
- {{range ($.Site.GetPage "taxonomyTerm" "categories").Pages }}
- <a href="{{.Permalink}}">{{lower .Title}}</a>
- {{end}}
- <br><br>
- <b>tags</b>:
- {{range ($.Site.GetPage "taxonomyTerm" "tags").Pages }}
- <a href="{{.Permalink}}">{{lower .Title}}</a>
- {{end}}
- </section>
-
- <br>
-
- My blog is also available through <a href="https://rohanverma.net/blog/index.xml">[RSS]</a>
-
- {{ end }}
- {{ define "footer" }}
- {{ partial "powered-by.html" . }}
- {{ partial "cookie-disclaimer.html" . }}
- {{ end }}
|