-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.toml
More file actions
117 lines (90 loc) · 3.81 KB
/
config.toml
File metadata and controls
117 lines (90 loc) · 3.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
# Site settings
baseurl = "https://maketested.com/"
languageCode = "en-us"
title = "MakeTested"
theme = "hugo-freelancer-theme"
[params]
# You can use Markdown syntax for urls [text](//url.to/source) for
# most longer texts.
# To provide some metadata for search engines feel free to add a few
# information about you and your website.
name = "MakeTested, LLC"
description = "We build, customize, integrate, and teach engineering software tools."
# Since this template is static, the contact form uses www.formspree.io as a
# proxy. The form makes a POST request to their servers to send the actual
# email. Visitors can send up to a 1000 emails each month for free.
#
# What you need to do for the setup?
#
# - set your email address under 'email' below
# - upload the generated site to your server
# - send a dummy email youself to confirm your account
# - click the confirm link in the email from www.formspree.io
# - you're done. Happy mailing!
email = "hello@maketested.com"
# Custom assets
custom_css = ["css/custom.css"]
custom_js = []
[params.navigation]
brand = "MakeTested"
[params.header]
# Copy your own image into './static/img/'' if you wish
image = "logo.jpg"
name = "MakeTested"
subtitle = "We build, customize, integrate, and teach engineering software tools."
[params.portfolio]
# All projects defined in their own files. You can find example projects
# at 'exampleSite/data/projects'. Copy the 'projects' folder into the 'data' directory
# at the root of this Hugo site.
# For more informtion take a look at the README.
title = "Our Projects"
[params.portfolio.modal]
client = "Client"
date = "Date"
category = "Category"
buttontext = "Close"
[params.about]
title = "About Us"
# The about text is splitted into a left and right column
left = "We specialize in test automation, command-line tooling, and custom web development."
right = "Our technology stack commonly includes Python, Django, Postgres, and Heroku."
[params.about.button]
link = "#"
icon = "arrow-circle-up"
[params.contact]
title = "Contact"
# 'error' defines error messages for invalid inputs
[params.contact.form.name]
text = "Name"
error = "Please enter your name."
[params.contact.form.email]
text = "Email Address"
error = "Please enter your email address."
[params.contact.form.phone]
text = "Phone Number"
error = "Please enter your phone number."
[params.contact.form.message]
text = "Message"
error = "Please enter a message."
[params.contact.form.button]
text = "Send"
[params.footer]
copyright = "© 2021 MakeTested, LLC"
# [params.footer.location]
# title = "Location"
# # Postal address (add as many lines as necessary)
# address = ["3481 Melrose Place", "Beverly Hills, CA 90210"]
[params.footer.social]
title = "Connect With Us"
# All icons using Fontawesome's icon font. Look at fortawesome.github.io/Font-Awesome/icons/
# for more icons. The icons are represented by their corresponding
# CSS class.
[[params.footer.social.networks]]
icon = "fa-twitter"
link= "//twitter.com/maketested"
[[params.footer.social.networks]]
icon = "fa-facebook"
link= "//facebook.com/maketested"
[[params.footer.social.networks]]
icon = "fa-github"
link = "//github.com/maketested"