diff options
Diffstat (limited to 'templates')
| -rw-r--r-- | templates/page/now.gohtml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/templates/page/now.gohtml b/templates/page/now.gohtml index 776e87a..6af668e 100644 --- a/templates/page/now.gohtml +++ b/templates/page/now.gohtml @@ -8,10 +8,12 @@ </div> <div class="tags" style="{{ .Color.GetTagColor }}"> {{ range $tag := .Person.Tags }} - <div class="tag" data-href="{{ .Link }}" title="{{ .Link }}"> + <div class="tag"> <h4>{{ .Name }}</h4> <p>{{ .Description }}</p> - <p><a href="">Hello</a></p> + {{ if and (ne .Link "") (ne .LinkName "") }} + <p><a href="{{ .Link }}">{{ .LinkName }}</a></p> + {{ end }} </div> {{ end }} </div> |
