+ ;; Create a body-only version of the tags index. Needs absolute path to posts folder.
+ (with-temp-file (file-name-concat
+ (plist-get (cdr (assoc "landing" org-publish-project-alist)) :publishing-directory)
+ "tag-index-body.html")
+ (insert-file-contents (file-name-concat
+ (plist-get (cdr (assoc "landing" org-publish-project-alist)) :base-directory)
+ "tag-index.org"))
+ (org-export-to-buffer 'mustache-html (current-buffer) nil nil nil t nil)
+ (replace-string "href=\"posts" "href=\"/posts"))