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.

92 satır
2.5KB

  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><a href="/blog">Blog</a></h2>
  38. I write about what I am doing and things I find interesting.
  39. <ul>
  40. {{ range first 10 .Site.RegularPages }}
  41. <li>
  42. <a href="{{ .Page.RelPermalink }}">{{ .Page.Title }}</a>
  43. </li>
  44. {{ end }}
  45. <li>
  46. <a href="/archive">more...</a>
  47. </li>
  48. </ul>
  49. This blog is also available via <a href="/blog/index.xml">[RSS]</a>
  50. <br><br>
  51. <section>
  52. <h3><a href="/categories">Categories</a></h3>
  53. {{range ($.Site.GetPage "taxonomyTerm" "categories").Pages }}
  54. <a class="no-underline" style="margin-right:0.5rem;" href="{{.Permalink}}">{{lower .Title}}</a>
  55. {{end}}
  56. <br><br>
  57. <h3><a href="/tags">Tags</a></h3>
  58. {{range ($.Site.GetPage "taxonomyTerm" "tags").Pages }}
  59. <a class="no-underline" style="margin-right:0.5rem;" href="{{.Permalink}}">{{lower .Title}}</a>
  60. {{end}}
  61. </section>
  62. <br>
  63. <br>
  64. <h2>Recent Projects</h2>
  65. <ul>
  66. {{ range first 10 .Site.Taxonomies.categories.projects }}
  67. <li>
  68. <a href="{{ .Page.RelPermalink }}">{{ .Page.Title }}</a>
  69. </li>
  70. {{ end }}
  71. <li>
  72. <a href="/categories/projects">more...</a>
  73. </li>
  74. </ul>
  75. {{ end }}
  76. {{ define "footer" }}
  77. {{ partial "powered-by.html" . }}
  78. {{ end }}