You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

110 line
2.9KB

  1. {{ define "title" -}}
  2. {{ .Site.Title }}
  3. {{- end }}
  4. {{ define "header" }}
  5. {{ partial "masthead.html" . }}
  6. {{ end }}
  7. {{ define "main" }}
  8. <header>
  9. <h1>{{ .Title }} <small>(rhnvrm)</small></h1>
  10. </header>
  11. <div class="leader">
  12. <img src="/wp-content/uploads/avatar.jpg" class="myimage">
  13. <div>
  14. Hello World 👋 <br>
  15. Welcome to my homepage.
  16. </div>
  17. </div>
  18. <br><br>
  19. <h2>Social</h2>
  20. <table>
  21. <tr><td>github</td> <td>
  22. <a target="_blank" rel="me" data-hint="Github" title="Github" href="https://github.com/rhnvrm">https://github.com/rhnvrm</a>
  23. </td></tr>
  24. <tr><td>keybase</td> <td>
  25. <a target="_blank" rel="me" data-hint="Keybase" title="Keybase" href="https://keybase.io/rhnvrm">https://keybase.io/rhnvrm</a>
  26. </td></tr>
  27. <tr><td>twitter</td> <td>
  28. <a target="_blank" rel="me" data-hint="Twitter" title="Twitter" href="https://twitter.com/rhnvrm">https://twitter.com/rhnvrm</a>
  29. </td></tr>
  30. <tr><td>linkedin</td> <td>
  31. <a target="_blank" data-hint="Linkedin" title="Linkedin" href="https://www.linkedin.com/in/rhnvrm/">https://www.linkedin.com/in/rhnvrm/</a>
  32. </td></tr>
  33. <tr><td>youtube</td> <td>
  34. <a target="_blank" data-hint="Youtube" title="Youtube" href="https://www.youtube.com/user/TheRohanVerma">https://www.youtube.com/user/TheRohanVerma</a>
  35. </td></tr>
  36. </table>
  37. <h2>Projects</h2>
  38. My latest sideproject is <a class="no-underline text-grey-dark" href="https://upi.link/">upi.link</a>, a small and nifty
  39. programmable UPI shortlink generator.
  40. <br><br>
  41. Here is a list of my most recent projects:
  42. <br><br>
  43. {{ range first 10 .Site.Taxonomies.categories.projects }}
  44. <li>
  45. <a href="{{ .Page.RelPermalink }}">{{ .Page.Title }}</a>
  46. </li>
  47. {{ end }}
  48. <br>
  49. You can find all my projects at the <a href="project_list">project listing page</a>.
  50. <br><br>
  51. <h2>Blog</h2>
  52. My blog is also available via <a href="/blog/index.xml">[RSS]</a>
  53. <br><br>
  54. You can read my <a class="no-underline text-grey-dark" href="/blog">blog</a> where
  55. I try to write about what I am doing and things I find interesting.
  56. I have organized my blog using categories
  57. and tags. You can navigate the blog by using them,
  58. or if you prefer to view by date, you can visit
  59. <a href="blog_list">the blog listing page</a>.
  60. <br><br>
  61. Here are the most recent blogs I wrote,
  62. <br><br>
  63. {{ range first 10 .Site.RegularPages }}
  64. <li>
  65. <a href="{{ .Page.RelPermalink }}">{{ .Page.Title }}</a>
  66. </li>
  67. {{ end }}
  68. <br><br>
  69. <section>
  70. <b><a href="/categories">categories</a></b>: <br>
  71. {{range ($.Site.GetPage "taxonomyTerm" "categories").Pages }}
  72. <a href="{{.Permalink}}">{{lower .Title}}</a>
  73. {{end}}
  74. <br><br>
  75. <b><a href="/tags">tags</a></b>: <br>
  76. {{range ($.Site.GetPage "taxonomyTerm" "tags").Pages }}
  77. <a href="{{.Permalink}}">{{lower .Title}}</a>
  78. {{end}}
  79. </section>
  80. <br>
  81. {{ end }}
  82. {{ define "footer" }}
  83. {{ partial "powered-by.html" . }}
  84. {{ end }}