From 4283c60495e3bfd584d4da8072153a083f3377a1 Mon Sep 17 00:00:00 2001 From: Jyri Eerola Date: Tue, 3 Apr 2018 23:06:17 +0300 Subject: [PATCH] Initial with something --- .gitignore | 3 + .gitmodules | 3 + archetypes/default.md | 6 + config.toml | 226 ++++++++++++++++++++++++++++++ content/services/pre-tunkattud.md | 12 ++ content/services/taas.md | 11 ++ content/services/tunkkaus.md | 6 + deploy.sh | 1 + themes/forty | 1 + 9 files changed, 269 insertions(+) create mode 100644 .gitignore create mode 100644 .gitmodules create mode 100644 archetypes/default.md create mode 100644 config.toml create mode 100644 content/services/pre-tunkattud.md create mode 100644 content/services/taas.md create mode 100644 content/services/tunkkaus.md create mode 100755 deploy.sh create mode 160000 themes/forty diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6f037ed --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +**/*~ +**/*# +public/* \ No newline at end of file diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..f2ae054 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "themes/forty"] + path = themes/forty + url = https://github.com/MarcusVirg/forty diff --git a/archetypes/default.md b/archetypes/default.md new file mode 100644 index 0000000..00e77bd --- /dev/null +++ b/archetypes/default.md @@ -0,0 +1,6 @@ +--- +title: "{{ replace .Name "-" " " | title }}" +date: {{ .Date }} +draft: true +--- + diff --git a/config.toml b/config.toml new file mode 100644 index 0000000..ed4ca60 --- /dev/null +++ b/config.toml @@ -0,0 +1,226 @@ +baseURL = "https://jrd.fi/" +languageCode = "fi-FI" +title = "JRD.fi" +theme = "forty" + + +[params] + # You can use Markdown syntax for urls [text](//url.to/source) + # To create multi-line text in strings use the """example Text""" format + # + # All icons using Fontawesome's icon font. Look at fontawesome.io/icons + # for more icons. The icons are represented by their corresponding + # CSS class. + + # Provide your metadata here. + name = "JRD TECH" + description = "Future tech for future people" + + # Link custom assets relative to /static + custom_css = [] + custom_js = [] + favicon = "favicon.ico" + + # Just a custom image variable, please define it in .md files for content. + image = "" + + # 404 error customization + [params.error404] + heading = "Page couldn't be found" + text = "Please visit [this page](/)" + + # Navigation Section + [params.navigation] + title = "JRD" + subtitle = "TECH" + menu = "Menu" + # Optional logo as brand stored in img/ + # logo = "logo.png" + + [[params.navigation.links]] + name = "Home" + url = "#" + + [[params.navigation.links]] + name = "Blogit" + url = "blogs" + + [[params.navigation.links]] + name = "TaaS - Tunkkaus as a Service" + url = "services/taas" + + [[params.navigation.links]] + name = "Pre-tunkattu'd" + url = "services/pre-tunkattud" + + # Add custom links here by uncommenting code below. To remove links just delete + # the [[params.navigation.links]] map associated with that link. Copy and paste + # code below if you need more links. Buttons work in the same way. + # [[params.navigation.links]] + # name = "NameOfLink" + # url = "UrlOfLink" + + # Button Style 1 + [[params.navigation.button1]] + name = "Get Started" + url = "blogs" + + # Button Style 2 + [[params.navigation.button2]] + name = "Log In" + url = "#" + + + # Banner section + [params.banner] + # To change the background image on the homepage banner, replace 'banner.jpg' in + # the 'static/img' folder. + title = "JRD TECH" + subtitle = "FUTURE TECH FOR FUTURE PEOPLE" + buttonText = "Get Started" + + + # Tiles Section + [params.tiles] + enable = true + # Display your showcases here. + + [[params.tiles.showcase]] + title = "TaaS" + subtitle = "Tunkkaus as a Service" + image = "pic01.jpg" + url = "services/taas" + + [[params.tiles.showcase]] + title = "Pre-tunkattu'd" + subtitle = "Esitunkatut järjestelmät" + image = "pic02.jpg" + url = "services/pre-tunkattud" + + [[params.tiles.showcase]] + title = "Magna" + subtitle = "Lorem Etiam Nullam" + image = "pic03.jpg" + url = "blogs/magna" + + [[params.tiles.showcase]] + title = "Ipsum" + subtitle = "Nisl Sed Aliquam" + image = "pic04.jpg" + url = "blogs/ipsum" + + [[params.tiles.showcase]] + title = "Consequat" + subtitle = "Ipsum Dolor Sit Amet" + image = "pic05.jpg" + url = "blogs/ipsum" + + [[params.tiles.showcase]] + title = "Etiam" + subtitle = "Feugiat Amet Tempus" + image = "pic06.jpg" + url = "blogs/ipsum" + # You can make more showcases by copy and pasting the code above + + [params.blog] + # All blogs defined in their own files. You can find example blogs + # at 'exampleSite/content/blogs'. Copy the 'blogs' folder into the 'content' directory + # at the root of this Hugo site. + # For more informtion take a look at the README. + # To add more blogs just copy and paste the code. + + # Section Type Two + [params.two] + enable = true + title = "Massa libero" + subtitle = """Nullam et orci eu lorem consequat tincidunt vivamus et sagittis libero. + Mauris aliquet magna magna sed nunc rhoncus pharetra. + Pellentesque condimentum sem. In efficitur ligula tate urna. Maecenas laoreet massa vel lacinia pellentesque lorem ipsum dolor. + Nullam et orci eu lorem consequat tincidunt. Vivamus et sagittis libero. + Mauris aliquet magna magna sed nunc rhoncus amet pharetra et feugiat tempus.""" + buttonText = "Get Started" + url = "blogs" + + + # Contact section + [params.contact] + enable = true + buttonSend = "Send message" + buttonClear = "Clear" + + # 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 and uncomment + # - upload the generated site to your server + # - send a dummy email yourself to confirm your account + # - click the confirm link in the email from www.formspree.io + # - you're done. Happy mailing! + # formEmail = "example@domain.com" + + # Contact Section + # You can add multiple emails, phone numbers, or addresses + # by copying the corresponding map with frontmatter code. + [[params.contact.email]] + title = "Email" + email = "etunimi.sukunimi@jrd.fi" + + [[params.contact.phone]] + title = "Phone" + phone = "+358 40 5755 442" + + [[params.contact.address]] + title = "Jyväskylä" + street = "Emännäntie 10" + city = "40740 Jyväskylä" + country = "Finland" + + [[params.contact.address]] + title = "Tampere" + street = "Turjankatu" + city = "Tampere" + country = "Finland" + + [[params.contact.address]] + title = "Helsinki" + street = "Meritullinkatu" + city = "Helsinki" + country = "Finland" + + # Footer section + [params.footer] + enable = true + copyright = "JRD Tech Oy" + +# [[params.footer.social]] +# icon = "fa-twitter" +# url= "https://www.twitter.com" +# label = "Twitter" + +# [[params.footer.social]] +# icon = "fa-facebook" +# url= "https://www.facebook.com" +# label = "Facebook" + +# [[params.footer.social]] +# icon = "fa-instagram" +# url= "https://www.instagram.com" +# label = "Instagram" + + [[params.footer.social]] + icon = "fa-github" + url= "https://www.github.com/JRDTech" + label = "GitHub" + +# [[params.footer.social]] +# icon = "fa-linkedin" +# url= "https://www.linkedin.com" +# label = "LinkedIn" + + [[params.footer.quicklinks]] + text = "Design: " + url= "https://www.html5up.net" + alt = "HTML5 UP" \ No newline at end of file diff --git a/content/services/pre-tunkattud.md b/content/services/pre-tunkattud.md new file mode 100644 index 0000000..bd6ac38 --- /dev/null +++ b/content/services/pre-tunkattud.md @@ -0,0 +1,12 @@ +--- +title: "Pre-Tunkattu'd -järjestelmät" +date: 2018-03-11T21:37:37+02:00 +--- + +JRD:n uusi tunkkauspalvelukokonaisuus toimittaa nyt myös esi-tunkattuja +avoimen lähdekoodin ohjelmistoihin perustuvia järjestelmiä. Suunnittelemme +ja rakennamme järjestelmän asiakkaan tarpeiden mukaan ensin proof-of-concept +(PoC) -malliksi dokumentaation kera, ja asikkaan tarpeiden mukaan myöhemmin +myös autamme jatkokehityksessä ja ylläpidossa sopimuksen mukaan. Näin saadaan +nopeasti pohjaratkaisu, jota asiakas voi jatkossa lähteä kehittämään myös +aivan itse omien halujensa mukaan omaan suuntaansa. \ No newline at end of file diff --git a/content/services/taas.md b/content/services/taas.md new file mode 100644 index 0000000..a7048d4 --- /dev/null +++ b/content/services/taas.md @@ -0,0 +1,11 @@ +--- +title: "TaaS - Tunkkaus as a Service" +date: 2018-03-11T21:37:18+02:00 +--- + +JRD tarjoaa pian tunkkausta palvelumuodossa! Tarjoamme asiakkaidemme esoteerisiin +projekteihin tukea ledien säätämisestä yleisradiolähetteiden ohjelmasiirtoketjuihin. +JRD rakastaa erityisesti avoimen lähdekoodin ohjelmistokomponentteja. Tule sinäkin +asiakkaaksemme, ja tunkkaamme järjestelmänne toimivaksi viimeistään juuri ennen deadlinea! + +Ota yhteyttä! \ No newline at end of file diff --git a/content/services/tunkkaus.md b/content/services/tunkkaus.md new file mode 100644 index 0000000..635bbd4 --- /dev/null +++ b/content/services/tunkkaus.md @@ -0,0 +1,6 @@ +--- +title: "Tunkkaus" +date: 2018-03-11T21:34:48+02:00 +draft: true +--- + diff --git a/deploy.sh b/deploy.sh new file mode 100755 index 0000000..1c08690 --- /dev/null +++ b/deploy.sh @@ -0,0 +1 @@ +hugo && rsync -avz --delete public/ html-nano1:~/www diff --git a/themes/forty b/themes/forty new file mode 160000 index 0000000..28bc943 --- /dev/null +++ b/themes/forty @@ -0,0 +1 @@ +Subproject commit 28bc943f6a6e0a68f8872910df1f5f08f693c2e2