config.toml 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. baseurl = "http://q.ptt.cx"
  2. title = "Universal"
  3. theme = "AI_Video_LP"
  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. publishDir = "/var/www/html"
  13. # Define the number of posts per page
  14. paginate = 10
  15. [outputs]
  16. home = ["HTML"]
  17. page = ["HTML"]
  18. [menu]
  19. # Main menu
  20. [[menu.main]]
  21. identifier="home"
  22. name = "Home"
  23. url = "/"
  24. weight = 1
  25. [[menu.main]]
  26. identifier="立即洽詢"
  27. name = "立即洽詢"
  28. url = "https://docs.google.com/forms/d/e/1FAIpQLSeygs4xXy-Xxeh2w9rI4zuQNFutLP_71Bwxo5hqqs2Ca-u5VA/viewform"
  29. weight = 3
  30. # Top bar social links menu
  31. [[menu.topbar]]
  32. weight = 1
  33. name = "GitHub"
  34. url = "https://github.com/devcows/hugo-universal-theme"
  35. pre = "<i class='fab fa-2x fa-github'></i>"
  36. [[menu.topbar]]
  37. weight = 2
  38. name = "Facebook"
  39. url = "http://facebook.com"
  40. pre = "<i class='fab fa-2x fa-facebook'></i>"
  41. [[menu.topbar]]
  42. weight = 3
  43. name = "Twitter"
  44. url = "http://twitter.com"
  45. pre = "<i class='fab fa-2x fa-twitter'></i>"
  46. [[menu.topbar]]
  47. weight = 4
  48. name = "Email"
  49. url = "mailto:your@email.com"
  50. pre = "<i class='fas fa-2x fa-envelope'></i>"
  51. [params]
  52. viewMorePostLink = "/blog/"
  53. author = "DevCows"
  54. defaultKeywords = ["devows", "hugo", "go"]
  55. mainSections = ["blog"]
  56. defaultDescription = "Site template made by devcows using hugo"
  57. # Social media
  58. facebook_site = "" # the Facebook handle of your site ('https://www.facebook.com/HANDLE')
  59. twitter_site = "GoHugoIO" # the Twitter handle of your site (without the '@')
  60. default_sharing_image = "img/sharing-default.png"
  61. # Google Maps widget: If `googleMapsApiKey` is not set, no key will be passed to Google (which likely results in a broken map widget).
  62. enableGoogleMaps = true
  63. googleMapsApiKey = "AIzaSyCFhtWLJcE30xOAjcbSFi-0fnoVmQZPb1Y"
  64. latitude = "-12.043333"
  65. longitude = "-77.028333"
  66. # Style options: default (light-blue), blue, green, marsala, pink, red, turquoise, violet
  67. style = "default"
  68. # Since this template is static, the contact form uses www.formspree.io as a
  69. # proxy. The form makes a POST request to their servers to send the actual
  70. # email. Visitors can send up to a 50 emails each month for free.
  71. #
  72. # What you need to do for the setup?
  73. #
  74. # - register your account to https://formspree.io/register
  75. # - login and create new form
  76. # - set your form's endpoint url under 'formspree_action' below
  77. # - upload the generated site to your server
  78. # - test a dummy email yourself
  79. # - you're done. Happy mailing!
  80. #
  81. # Enable the contact form by entering your Formspree.io endpoint url
  82. formspree_action = "https://formspree.io/sample/of/endpoint"
  83. contact_form_ajax = false
  84. about_us = '<a href="http://www.choozmo.com/"><img src="img/logo_choozmo.webp" class="footer_img"></a>'
  85. copyright = "Copyright (c) 2021, Choozmo; all rights reserved."
  86. # Format dates with Go's time formatting
  87. date_format = "January 2, 2006"
  88. logo = "img/Choozmo cloud logo.png"
  89. logo_small = "img/Choozmo cloud logo.png"
  90. address = """<p class="text-uppercase"><strong>集仕多股份有限公司</strong>
  91. <br>新竹縣竹北市復興二路229號9樓之9
  92. <br>聯絡電話:036670804
  93. <br>聯絡信箱:service@choozmo.com
  94. </p>
  95. """
  96. [permalinks]
  97. blog = "/blog/:year/:month/:day/:filename/"
  98. # Enable or disable top bar with social icons
  99. [params.topbar]
  100. enable = false
  101. text = """<p class="hidden-sm hidden-xs">Contact us on +420 777 555 333 or hello@universal.com.</p>
  102. <p class="hidden-md hidden-lg"><a href="#" data-animate-hover="pulse"><i class="fas fa-phone"></i></a>
  103. <a href="#" data-animate-hover="pulse"><i class="fas fa-envelope"></i></a>
  104. </p>
  105. """
  106. # Enable and disable widgets for the right sidebar
  107. [params.widgets]
  108. categories = true
  109. tags = true
  110. search = true
  111. [params.carousel]
  112. enable = true
  113. # All carousel items are defined in their own files. You can find example items
  114. # at 'exampleSite/data/carousel'.
  115. # For more informtion take a look at the README.
  116. [params.visualfeature]
  117. enable = true
  118. # All features are defined in their own files. You can find example items
  119. # at 'exampleSite/data/features'.
  120. # For more informtion take a look at the README.
  121. [params.features]
  122. enable = true
  123. # All features are defined in their own files. You can find example items
  124. # at 'exampleSite/data/features'.
  125. # For more informtion take a look at the README.
  126. [params.testimonials]
  127. enable = true
  128. # All testimonials are defined in their own files. You can find example items
  129. # at 'exampleSite/data/testimonials'.
  130. # For more informtion take a look at the README.
  131. title = "服務項目"
  132. subtitle = "我們替您傳遞價值,將值得說的,好好說得精采"
  133. [params.videos]
  134. enable = true
  135. title = "Testimonials"
  136. subtitle = "We have worked w"
  137. [params.comparison]
  138. enable = true
  139. [params.see_more]
  140. enable = false
  141. icon = "far fa-file-alt"
  142. title = "Do you want to see more?"
  143. subtitle = "We have prepared for you more than 40 different HTML pages, including 5 variations of homepage."
  144. link_url = "#"
  145. link_text = "Check other homepages"
  146. [params.steps]
  147. enable = true
  148. [params.clients]
  149. enable = false
  150. # All clients are defined in their own files. You can find example items
  151. # at 'exampleSite/data/clients'.
  152. # For more informtion take a look at the README.
  153. title = "合作夥伴"
  154. subtitle = ""
  155. [params.recent_posts]
  156. enable = false
  157. title = "From our blog"
  158. 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."