You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

5 vuotta sitten
5 vuotta sitten
5 vuotta sitten
5 vuotta sitten
5 vuotta sitten
5 vuotta sitten
5 vuotta sitten
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. # Ink
  2. Crisp, minimal personal website and blog theme Hugo. Forked from [Ezhil](https://github.com/vividvilla/ezhil).
  3. ## Demo
  4. [View demo](https://hugo-ink.netlify.com)
  5. ![Screenshot](https://user-images.githubusercontent.com/547147/69119000-3ace9280-0abb-11ea-81bc-5af68433e845.png "Ink light theme")
  6. ## Features
  7. * Google Analytics integration
  8. * Syntax highlighting
  9. * Twitter cards and opengraph tags support
  10. * Disqus comments
  11. * RSS feeds
  12. * Custom CSS/JS
  13. * Multilingual months support
  14. ## Installation
  15. cd into your hugo site's root directory and:
  16. ```sh
  17. cd themes
  18. git clone https://github.com/knadh/hugo-ink.git
  19. ```
  20. For more information read the [official setup guide](https://gohugo.io/overview/installing/) of Hugo.
  21. ## Content type
  22. You can specify content type with field `type` in your content. For example static pages can be set as type `page` which are excluded from recent posts and all posts page. You can use site params `mainSections` and `disableDisqusTypes` to control which page types are excluded from recent posts and Disqus comments respectively.
  23. ```md
  24. ---
  25. title: "About"
  26. date: 2019-04-19T21:37:58+05:30
  27. type: "page"
  28. ---
  29. This is some static page where you can write about yourself.
  30. ```
  31. ## Language Settings for the month
  32. Due to the currently unavailable feature for multilingual dates in ``.Date`` from
  33. Go. It is possible to create a ``month.yaml`` in the data folder of your
  34. Hugo site root directoy. There is also an example file in
  35. ``exampleSite/data/``.
  36. ```sh
  37. cat > month.yaml << EOF
  38. 1: "Jan"
  39. 2: "Feb"
  40. 3: "Mar"
  41. 4: "Apr"
  42. 5: "May"
  43. 6: "Jun"
  44. 7: "Jul"
  45. 8: "Aug"
  46. 9: "Sep"
  47. 10: "Oct"
  48. 11: "Nov"
  49. 12: "Dec"
  50. EOF
  51. ```
  52. ## Credits
  53. * [Ezhil theme](https://github.com/vividvilla/ezhil) from which Ink was forked
  54. Licensed under the MIT license.