Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

config.toml 3.5KB

před 4 roky
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. ################################# Default configuration ###################
  2. baseURL = "https://examplesite.com"
  3. title = "Meghna"
  4. theme = "meghna-hugo"
  5. # post pagination
  6. paginate = "6"
  7. # post excerpt
  8. summaryLength = "15"
  9. # disqus short name
  10. disqusShortname = "" # get your shortname form here : https://disqus.com
  11. # disable language
  12. disableLanguages = []
  13. ############################# Plugins ##########################
  14. # css plugins
  15. [[params.plugins.css]]
  16. link = "plugins/bootstrap/bootstrap.min.css"
  17. [[params.plugins.css]]
  18. link = "plugins/themify-icons/themify-icons.css"
  19. [[params.plugins.css]]
  20. link = "plugins/magnific-popup/magnific-popup.css"
  21. [[params.plugins.css]]
  22. link = "plugins/slick/slick.css"
  23. [[params.plugins.css]]
  24. link = "https://fonts.googleapis.com/css?family=Anaheim|Quattrocento+Sans:400,700&display=swap"
  25. # js plugins
  26. [[params.plugins.js]]
  27. link = "plugins/jquery/jquery.min.js"
  28. [[params.plugins.js]]
  29. link = "plugins/bootstrap/bootstrap.min.js"
  30. [[params.plugins.js]]
  31. link = "plugins/slick/slick.min.js"
  32. [[params.plugins.js]]
  33. link = "plugins/shuffle/shuffle.min.js"
  34. [[params.plugins.js]]
  35. link = "plugins/magnific-popup/jquery.magnific-popup.min.js"
  36. [[params.plugins.js]]
  37. link = "plugins/lazy-load/lozad.min.js"
  38. [[params.plugins.js]]
  39. link = "plugins/google-map/map.js"
  40. ############################# Navigation ##################################
  41. [[menu.main]]
  42. name = "About Us"
  43. URL = "about"
  44. weight = 1
  45. [[menu.main]]
  46. name = "Service"
  47. URL = "services"
  48. weight = 2
  49. [[menu.main]]
  50. name = "Portfolio"
  51. URL = "portfolio"
  52. weight = 3
  53. [[menu.main]]
  54. name = "Team"
  55. URL = "team"
  56. weight = 4
  57. [[menu.main]]
  58. name = "Pricing"
  59. URL = "pricing"
  60. weight = 5
  61. [[menu.main]]
  62. name = "Blog"
  63. URL = "blog"
  64. weight = 6
  65. [[menu.main]]
  66. name = "Contact"
  67. URL = "contact"
  68. weight = 7
  69. #### external / static link ####
  70. [[menu.static]]
  71. name = "Themefisher"
  72. URL = "https://themefisher.com/"
  73. weight = 8
  74. ############################# Default Parameters ##########################
  75. [params]
  76. logo = "images/logo.png"
  77. # Meta data
  78. description = "Responsive Multipurpose Parallax HTML5 Template"
  79. author = "Themefisher"
  80. # Google Analitycs
  81. google_analitycs_id = "" # Your ID
  82. # post share
  83. post_share = true
  84. # preloader
  85. [params.preloader]
  86. enable = true
  87. preloader = "images/logo.png"
  88. # google map
  89. [params.map]
  90. enable = true
  91. gmap_api = "https://maps.googleapis.com/maps/api/js?key=AIzaSyBu5nZKbeK-WHQ70oqOWo-_4VmwOwKP9YQ"
  92. map_latitude = "51.5223477"
  93. map_longitude = "-0.1622023"
  94. map_marker = "images/marker.png"
  95. ############################# social icons ##########################
  96. [[params.social]]
  97. icon = "ti-facebook" # themify icon pack : https://themify.me/themify-icons
  98. link = "#"
  99. [[params.social]]
  100. icon = "ti-twitter-alt" # themify icon pack : https://themify.me/themify-icons
  101. link = "#"
  102. [[params.social]]
  103. icon = "ti-youtube" # themify icon pack : https://themify.me/themify-icons
  104. link = "#"
  105. [[params.social]]
  106. icon = "ti-linkedin" # themify icon pack : https://themify.me/themify-icons
  107. link = "#"
  108. [[params.social]]
  109. icon = "ti-dribbble" # themify icon pack : https://themify.me/themify-icons
  110. link = "#"
  111. [[params.social]]
  112. icon = "ti-pinterest" # themify icon pack : https://themify.me/themify-icons
  113. link = "#"
  114. ################################ English Language ########################
  115. [Languages.en]
  116. languageName = "En"
  117. languageCode = "en-us"
  118. contentDir = "content/english"
  119. weight = 1
  120. home = "Home"
  121. ################################ France Language ########################
  122. [Languages.fr]
  123. languageName = "Fr"
  124. languageCode = "fr-fr"
  125. contentDir = "content/french"
  126. weight = 2
  127. home = "Accueil"