#+title: tag links
#+title_extra: {{{index-navbar(Tags)}}}
Links to tag pages
#+begin_export html
#+end_export
#+begin_src elisp :results html :exports results
(->> (ns/blog-get-tags)
(-shuffle)
;; (--sort (> (cdr it) (cdr other)))
(-map (-lambda ((tag . count))
;; (format "[[./tag-%s.org][%s (%s)]]" tag tag count)
(format "%s" tag (* 1.2 (+ 1 (log count))) tag)
))
(s-join "\n"))
#+end_src