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.

config.toml 3.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  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. # default content language
  12. defaultContentLanguage = "en"
  13. defaultContentLanguageInSubdir = true
  14. # disable language
  15. disableLanguages = [""]
  16. ############################# Plugins ##########################
  17. # css plugins
  18. [[params.plugins.css]]
  19. URL = "plugins/bootstrap/bootstrap.min.css"
  20. [[params.plugins.css]]
  21. URL = "plugins/themify-icons/themify-icons.css"
  22. [[params.plugins.css]]
  23. URL = "plugins/animate-css/animate.css"
  24. [[params.plugins.css]]
  25. URL = "plugins/magnific-popup/magnific-popup.css"
  26. [[params.plugins.css]]
  27. URL = "plugins/slick/slick.css"
  28. # js plugins
  29. [[params.plugins.js]]
  30. URL = "plugins/jquery/jquery.min.js"
  31. [[params.plugins.js]]
  32. URL = "plugins/bootstrap/bootstrap.min.js"
  33. [[params.plugins.js]]
  34. URL = "plugins/slick/slick.min.js"
  35. [[params.plugins.js]]
  36. URL = "plugins/shuffle/shuffle.min.js"
  37. [[params.plugins.js]]
  38. URL = "plugins/magnific-popup/jquery.magnific-popup.min.js"
  39. [[params.plugins.js]]
  40. URL = "plugins/wow/wow.min.js"
  41. ############################# Navigation ##################################
  42. [menu]
  43. [[menu.main]]
  44. name = "About Us"
  45. URL = "about"
  46. weight = 1
  47. [[menu.main]]
  48. name = "Service"
  49. URL = "services"
  50. weight = 2
  51. [[menu.main]]
  52. name = "Portfolio"
  53. URL = "portfolio"
  54. weight = 3
  55. [[menu.main]]
  56. name = "Team"
  57. URL = "team"
  58. weight = 4
  59. [[menu.main]]
  60. name = "Pricing"
  61. URL = "pricing"
  62. weight = 5
  63. [[menu.main]]
  64. name = "Blog"
  65. URL = "blog"
  66. weight = 6
  67. [[menu.main]]
  68. name = "Contact"
  69. URL = "contact"
  70. weight = 7
  71. ############################# Default Parameters ##########################
  72. [params]
  73. logo = "images/logo.png"
  74. # Meta data
  75. description = "Responsive Multipurpose Parallax HTML5 Template"
  76. author = "Themefisher"
  77. # Google Analitycs
  78. googleAnalitycsID = "Your ID"
  79. # post share
  80. postShare = true
  81. # preloader
  82. [params.preloader]
  83. enable = true
  84. preloader = "images/logo.png"
  85. ############################# social icons ##########################
  86. [[params.social_Icon]]
  87. icon = "ti-facebook" # themify icon pack : https://themify.me/themify-icons
  88. link = "#"
  89. [[params.social_Icon]]
  90. icon = "ti-twitter-alt" # themify icon pack : https://themify.me/themify-icons
  91. link = "#"
  92. [[params.social_Icon]]
  93. icon = "ti-youtube" # themify icon pack : https://themify.me/themify-icons
  94. link = "#"
  95. [[params.social_Icon]]
  96. icon = "ti-linkedin" # themify icon pack : https://themify.me/themify-icons
  97. link = "#"
  98. [[params.social_Icon]]
  99. icon = "ti-dribbble" # themify icon pack : https://themify.me/themify-icons
  100. link = "#"
  101. [[params.social_Icon]]
  102. icon = "ti-pinterest" # themify icon pack : https://themify.me/themify-icons
  103. link = "#"
  104. ################################# language ################################
  105. [Languages]
  106. ################################ English Language ########################
  107. [Languages.en]
  108. languageName = "En"
  109. languageCode = "en-us"
  110. contentDir = "content/english"
  111. weight = 1
  112. home = "Home"
  113. ################################ France Language ########################
  114. [Languages.fr]
  115. languageName = "Fr"
  116. languageCode = "fr-fr"
  117. contentDir = "content/french"
  118. weight = 2
  119. home = "Accueil"