index.html (1100B)
1 title: grgr.me 2 ---- 3 <h1>Oh, you actually visited the homepage</h1> 4 5 <p> 6 This was supposed to just be a way to throw short links on <a href='{{ $.Rel "grgr-resume.pdf" }}'>my CV</a>. Namely, 7 </p> 8 9 <ul class="post-list"> 10 {{ range .Site.Pages.WithTag "project" }} 11 <li><a href="{{ $.Rel .Url }}">{{ .Title }}</a>{{ if .Other.Commits }} <a class="tab" href="{{ .Other.Commits}}">»commits</a>{{ end }} 12 {{ if (.Other.Description) }}<br>{{ .Other.Description }}{{ end }} 13 </li> 14 {{ end }} 15 {{ range .Site.Pages.WithTag "prose" }} 16 <li><a href="{{ $.Rel .Url }}">{{ .Title }}</a> 17 {{ if (.Other.Description) }}<br>{{ .Other.Description }}{{ end }} 18 {{ end }} 19 </ul> 20 21 Other links of note include 22 23 <ul class="link-list"> 24 <li><a href="https://stackoverflow.com/users/story/5255922" rel="me">my devstory</a> <a class="tab" href="https://stackoverflow.com/users/story/5255922#form-section-Readings" rel="me">»recommended readings</a></li> 25 <li><a href="https://leetcode.com/fa1a7ffdc03d116c2d15d82b32a8e1bb1052973f0976b7773897bc2896fc9652/" rel="me">my leetcode</a></li> 26 </ul> 27 28 <p> 29 Have a good, good day. 30 </p>