A tumblelog theme for Hugo
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

6 роки тому
6 роки тому
6 роки тому
6 роки тому
6 роки тому
6 роки тому
6 роки тому
6 роки тому
6 роки тому
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. # Tumble
  2. A tumblelog theme for [Hugo](https://gohugo.io/).
  3. This is very alpha so don't expect anything to be clean, tidy or even work.
  4. Content types currently supported:
  5. - aside
  6. - image
  7. - quote
  8. - post
  9. - video
  10. ## Important!
  11. This theme relies heavily on its own archetypes to generate the different content types. Your local archetypes in `/archetypes` will override the theme archetypes in `/themes/tumble/archetypes` so move or delete your local `/archetypes/default.md`.
  12. ## Installation
  13. From the root of your Hugo site:
  14. $ git clone https://github.com/adrianshort/tumble.git themes/tumble
  15. Enable the theme in your `config.toml` file:
  16. theme = "tumble"
  17. ### Installing in a subfolder
  18. If you want the root of your tumblelog in `https://example.org/deep/nested/folder/` rather than `https://example.org/` it should mostly work although image relative URLs in `post`s might not work right. This needs tidying up so that `relativeURLs = true` in your `config.toml` is respected properly. Leave that set to false for now.
  19. ## Creating content
  20. All content types except `post` are set to `draft: false` for immediate publication.
  21. All content types have a common set of tags, which is the only taxonomy supported.
  22. ### Asides
  23. An aside is a short piece of text, typically one or two sentences. Asides don't have titles so it's easiest just to number them sequentially.
  24. $ hugo new asides/1.md
  25. ### Images
  26. A single image with an optional caption (the `title`) and body text.
  27. # hugo new images/my-image-title.md
  28. Then copy the image file itself to `/static/images/` and update `image` in the front matter if required.
  29. Set `show_title: true` to display the `title` as a caption beneath the image.
  30. ### Posts
  31. A traditional blog post with mandatory title and body text.
  32. $ hugo new posts/my-post-title.md
  33. Use the `image` field in the front matter to set the featured image for your post. This currently is only shown in the OpenGraph metadata, not on your site itself. If you want an image to show in the list views on your site, put it at the top of your post.
  34. ### Quotes
  35. A quotation usually by someone else, with attribution to the `author` and optionally to the `work` and `year`.
  36. $ hugo new quotes/shakespeare-hamlet.md
  37. ### Videos
  38. An embedded video from YouTube, Vimeo etc. This is currently quite clunky as you have to get the full embed URL from the video hosting site.
  39. So for [this video](https://www.youtube.com/watch?v=2-aWEYezEMk), do:
  40. $ hugo new videos/grimes-vanessa.md
  41. Then set the frontmatter:
  42. embed_url: https://www.youtube.com/embed/2-aWEYezEMk