config.toml 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. baseurl = "https://example.org"
  2. title = "Universal"
  3. theme = "hugo-universal-theme"
  4. themesDir = "../.."
  5. languageCode = "en-us"
  6. # Site language. Available translations in the theme's `/i18n` directory.
  7. defaultContentLanguage = "en"
  8. # Enable comments by entering your Disqus shortname
  9. disqusShortname = "devcows"
  10. # Enable Google Analytics by entering your tracking code
  11. googleAnalytics = ""
  12. # Define the number of posts per page
  13. paginate = 10
  14. [menu]
  15. # Main menu
  16. [[menu.main]]
  17. identifier="home"
  18. name = "Home"
  19. url = "/"
  20. weight = 1
  21. [[menu.main]]
  22. identifier="立即洽詢"
  23. name = "立即洽詢"
  24. url = "/blog/"
  25. weight = 2
  26. # Top bar social links menu
  27. [[menu.topbar]]
  28. weight = 1
  29. name = "GitHub"
  30. url = "https://github.com/devcows/hugo-universal-theme"
  31. pre = "<i class='fab fa-2x fa-github'></i>"
  32. [[menu.topbar]]
  33. weight = 2
  34. name = "Facebook"
  35. url = "http://facebook.com"
  36. pre = "<i class='fab fa-2x fa-facebook'></i>"
  37. [[menu.topbar]]
  38. weight = 3
  39. name = "Twitter"
  40. url = "http://twitter.com"
  41. pre = "<i class='fab fa-2x fa-twitter'></i>"
  42. [[menu.topbar]]
  43. weight = 4
  44. name = "Email"
  45. url = "mailto:your@email.com"
  46. pre = "<i class='fas fa-2x fa-envelope'></i>"
  47. [params]
  48. viewMorePostLink = "/blog/"
  49. author = "DevCows"
  50. defaultKeywords = ["devows", "hugo", "go"]
  51. mainSections = ["blog"]
  52. defaultDescription = "Site template made by devcows using hugo"
  53. # Social media
  54. facebook_site = "" # the Facebook handle of your site ('https://www.facebook.com/HANDLE')
  55. twitter_site = "GoHugoIO" # the Twitter handle of your site (without the '@')
  56. default_sharing_image = "img/sharing-default.png"
  57. # Google Maps widget: If `googleMapsApiKey` is not set, no key will be passed to Google (which likely results in a broken map widget).
  58. enableGoogleMaps = true
  59. googleMapsApiKey = "AIzaSyCFhtWLJcE30xOAjcbSFi-0fnoVmQZPb1Y"
  60. latitude = "-12.043333"
  61. longitude = "-77.028333"
  62. # Style options: default (light-blue), blue, green, marsala, pink, red, turquoise, violet
  63. style = "default"
  64. # Since this template is static, the contact form uses www.formspree.io as a
  65. # proxy. The form makes a POST request to their servers to send the actual
  66. # email. Visitors can send up to a 50 emails each month for free.
  67. #
  68. # What you need to do for the setup?
  69. #
  70. # - register your account to https://formspree.io/register
  71. # - login and create new form
  72. # - set your form's endpoint url under 'formspree_action' below
  73. # - upload the generated site to your server
  74. # - test a dummy email yourself
  75. # - you're done. Happy mailing!
  76. #
  77. # Enable the contact form by entering your Formspree.io endpoint url
  78. formspree_action = "https://formspree.io/sample/of/endpoint"
  79. contact_form_ajax = false
  80. about_us = '<a href="http://www.choozmo.com/"><img src="img/logo_choozmo.webp" class="footer_img"></a>'
  81. copyright = "Copyright (c) 2021, Choozmo; all rights reserved."
  82. # Format dates with Go's time formatting
  83. date_format = "January 2, 2006"
  84. logo = "img/Choozmo cloud logo.png"
  85. logo_small = "img/Choozmo cloud logo.png"
  86. address = """<p class="text-uppercase"><strong>集仕多股份有限公司</strong>
  87. <br>新竹縣竹北市復興二路229號9樓之9
  88. <br>聯絡電話:036670804
  89. </p>
  90. """
  91. [permalinks]
  92. blog = "/blog/:year/:month/:day/:filename/"
  93. # Enable or disable top bar with social icons
  94. [params.topbar]
  95. enable = false
  96. text = """<p class="hidden-sm hidden-xs">Contact us on +420 777 555 333 or hello@universal.com.</p>
  97. <p class="hidden-md hidden-lg"><a href="#" data-animate-hover="pulse"><i class="fas fa-phone"></i></a>
  98. <a href="#" data-animate-hover="pulse"><i class="fas fa-envelope"></i></a>
  99. </p>
  100. """
  101. # Enable and disable widgets for the right sidebar
  102. [params.widgets]
  103. categories = true
  104. tags = true
  105. search = true
  106. [params.carousel]
  107. enable = true
  108. # All carousel items are defined in their own files. You can find example items
  109. # at 'exampleSite/data/carousel'.
  110. # For more informtion take a look at the README.
  111. [params.features]
  112. enable = true
  113. # All features are defined in their own files. You can find example items
  114. # at 'exampleSite/data/features'.
  115. # For more informtion take a look at the README.
  116. [params.testimonials]
  117. enable = false
  118. # All testimonials are defined in their own files. You can find example items
  119. # at 'exampleSite/data/testimonials'.
  120. # For more informtion take a look at the README.
  121. title = "Testimonials"
  122. subtitle = "We have worked with many clients and we always like to hear they come out from the cooperation happy and satisfied. Have a look what our clients said about us."
  123. [params.videos]
  124. enable = true
  125. title = "Testimonials"
  126. subtitle = "We have worked w"
  127. [params.comparison]
  128. enable = true
  129. [params.see_more]
  130. enable = false
  131. icon = "far fa-file-alt"
  132. title = "Do you want to see more?"
  133. subtitle = "We have prepared for you more than 40 different HTML pages, including 5 variations of homepage."
  134. link_url = "#"
  135. link_text = "Check other homepages"
  136. [params.steps]
  137. enable = true
  138. [params.clients]
  139. enable = false
  140. # All clients are defined in their own files. You can find example items
  141. # at 'exampleSite/data/clients'.
  142. # For more informtion take a look at the README.
  143. title = "合作夥伴"
  144. subtitle = ""
  145. [params.recent_posts]
  146. enable = false
  147. title = "From our blog"
  148. subtitle = "Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo."