settings.toml 691 B

12345678910111213141516171819202122232425262728293031
  1. latestpage="result.html"
  2. [page]
  3. postsperpage = 20
  4. relative_css=["./style.css", "./timeline.css"]
  5. [post]
  6. accepted_images= ["jpg", "JPG", "png", "PNG"]
  7. # true = add <p></p> tags to each line.
  8. tag_paragraphs=true
  9. # adds <br> or user defined string between each line
  10. # line_separator="<br>"
  11. format="""
  12. <article id="{__num__}">
  13. <time>{__timestamp__}
  14. <a href=#{__num__}>(#{__num__})</a>
  15. </time>
  16. <div class="message">{__msg__}</div>
  17. {__btn__}
  18. </article>
  19. """
  20. [post.buttons]
  21. reply = "mailto:user@host.tld"
  22. test = "https://toml.io/en/v1.0.0#array-of-tables"
  23. interact = "https://yoursite.tld/cgi?postid="
  24. [post.gallery]
  25. path_to_thumb="./thumbs"
  26. path_to_fullsize="./images"