diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..2bf214f
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,10 @@
+*.gem
+.bundle
+.sass-cache
+_site
+Gemfile.lock
+*.DS_Store
+.DS_Store
+node_modules
+.jekyll-cache
+.jekyll-metadata
diff --git a/Gemfile b/Gemfile
new file mode 100644
index 0000000..fbf9386
--- /dev/null
+++ b/Gemfile
@@ -0,0 +1,3 @@
+source "https://rubygems.org"
+
+gem "isomer-jekyll", group: :jekyll_plugins
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..6048185
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,9 @@
+Except for any logos, trade marks, service marks, names, insignias, emblems, the Singapore state crest and Singapore national coat of arms, as well as any other graphic, image or sound which is used to identify any Singapore public sector agency or is associated with any Singapore public sector agency, all contents of this repository are provided under the MIT License.
+
+Copyright 2018 Government Technology Agency.
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..6f35817
--- /dev/null
+++ b/README.md
@@ -0,0 +1,11 @@
+# Welcome to Isomer Pages!
+
+## Why Markdown and YAML?
+
+Traditionally, in order to edit a website, one had to write in pure HTML. This is challenging for website administrators who had limited experience with HTML as it is not immediately readable or intuitive to non-experienced users.
+
+Our team decided to go with Markdown (.md) – more human readable syntax – so as to empower non-technical website administrators.
+
+While Markdown is appropriate for writing long segments of text, it alone does not allow users to edit small details of the website (e.g. change the hero-banner image) without diving into the HTML.
+
+We therefore chose to supplement the Markdown syntax with YAML (.yml) – yet another human readable syntax.
diff --git a/_config.yml b/_config.yml
new file mode 100644
index 0000000..bcbea69
--- /dev/null
+++ b/_config.yml
@@ -0,0 +1,48 @@
+title: Title
+url: "" # the base hostname & protocol for your site, e.g. http://example.com
+favicon: /images/favicon-isomer.ico
+
+# Site colors
+colors:
+ primary-color: '#6031b6'
+ secondary-color: '#4372d6'
+ media-colors:
+ - title: media-color-one
+ color: '#49759a'
+ - title: media-color-two
+ color: '#744d9f'
+ - title: media-color-three
+ color: '#00838f'
+ - title: media-color-four
+ color: '#00838f'
+ - title: media-color-five
+ color: '#00838f'
+
+description: An Isomer site of the Singapore Government
+
+##################################################################################################################
+# Everything below this line is Isomer-specific configuration. There should not be a need to edit these settings #
+##################################################################################################################
+permalink: none
+baseurl: ""
+exclude: [travis-script.js, .travis.yml, README.md, package.json, package-lock.json, node_modules, vendor/bundle/, vendor/cache/, vendor/gems/, vendor/ruby/, Gemfile, Gemfile.lock]
+include: [_redirects]
+defaults:
+ - scope:
+ path: ""
+ values:
+ layout: "page"
+# Custom CSS file path
+custom_css_path: "/misc/custom.css"
+custom_print_css_path: "/assets/css/print.css"
+paginate: 12
+remote_theme: isomerpages/isomerpages-template@next-gen
+safe: false
+plugins:
+ - jekyll-feed
+ - jekyll-assets
+ - jekyll-paginate
+ - jekyll-sitemap
+ - jekyll-remote-theme
+staging: https://site-creation-base2-staging.netlify.app
+prod: https://site-creation-base2-prod.netlify.app
\ No newline at end of file
diff --git a/_data/footer.yml b/_data/footer.yml
new file mode 100644
index 0000000..330c303
--- /dev/null
+++ b/_data/footer.yml
@@ -0,0 +1,10 @@
+contact_us: /contact-us/
+show_reach: true
+feedback:
+faq: /faq/
+social_media:
+ facebook: https://www.facebook.com/YourFBPage
+ twitter: https://www.twitter.com/YourTwitter
+ youtube: https://www.youtube.com/YourYoutube
+ instagram: https://www.instagram.com/your.insta/
+ linkedin: https://www.linkedin.com/company/YourAgency
diff --git a/_data/navigation.yml b/_data/navigation.yml
new file mode 100644
index 0000000..94c2fb5
--- /dev/null
+++ b/_data/navigation.yml
@@ -0,0 +1,15 @@
+##################################
+# #
+# Feel free to edit this file :) #
+# #
+##################################
+
+logo: /images/isomer-logo.svg
+
+links:
+ - title: Contact Us
+ url: /contact-us/
+ - title: Example Page
+ url: /example-page/
+ - title: Example Folder
+ collection: example-folder
diff --git a/_example-folder/collection.yml b/_example-folder/collection.yml
new file mode 100644
index 0000000..7923eb6
--- /dev/null
+++ b/_example-folder/collection.yml
@@ -0,0 +1,7 @@
+collections:
+ example-folder:
+ output: true
+ order:
+ - folder-page.md
+ - example-subfolder/.keep
+ - example-subfolder/subfolder-page.md
diff --git a/_example-folder/example-subfolder/.keep b/_example-folder/example-subfolder/.keep
new file mode 100644
index 0000000..e69de29
diff --git a/_example-folder/example-subfolder/subfolder-page.md b/_example-folder/example-subfolder/subfolder-page.md
new file mode 100644
index 0000000..05df7c7
--- /dev/null
+++ b/_example-folder/example-subfolder/subfolder-page.md
@@ -0,0 +1,5 @@
+---
+title: Subfolder Page
+permalink: /example-folder/example-subfolder/subfolder-page
+third_nav_title: Example Subfolder
+---
diff --git a/_example-folder/folder-page.md b/_example-folder/folder-page.md
new file mode 100644
index 0000000..2bf6e6c
--- /dev/null
+++ b/_example-folder/folder-page.md
@@ -0,0 +1,4 @@
+---
+title: Folder Page
+permalink: /example-folder/folder-page
+---
\ No newline at end of file
diff --git a/files/.keep b/files/.keep
new file mode 100644
index 0000000..8b13789
--- /dev/null
+++ b/files/.keep
@@ -0,0 +1 @@
+
diff --git a/images/.keep b/images/.keep
new file mode 100644
index 0000000..8b13789
--- /dev/null
+++ b/images/.keep
@@ -0,0 +1 @@
+
diff --git a/images/favicon-isomer.ico b/images/favicon-isomer.ico
new file mode 100644
index 0000000..1c6335b
Binary files /dev/null and b/images/favicon-isomer.ico differ
diff --git a/images/hero-banner.png b/images/hero-banner.png
new file mode 100644
index 0000000..d823b22
Binary files /dev/null and b/images/hero-banner.png differ
diff --git a/images/isomer-logo.svg b/images/isomer-logo.svg
new file mode 100644
index 0000000..5d373cd
--- /dev/null
+++ b/images/isomer-logo.svg
@@ -0,0 +1,41 @@
+
diff --git a/index.md b/index.md
new file mode 100644
index 0000000..26cb18d
--- /dev/null
+++ b/index.md
@@ -0,0 +1,32 @@
+---
+layout: homepage
+title: Isomer Site
+description: Brief site description here
+image: /images/isomer-logo.svg
+permalink: /
+notification: Here's a notification bar you can use!
+sections:
+ - hero:
+ title: Hero title
+ subtitle: Hero subtitle
+ background: /images/hero-banner.png
+ button: Contact Us
+ url: /contact-us/
+ key_highlights:
+ - title: Highlight A
+ description: Important highlight A is important
+ url: https://google.com
+ - title: Highlight B
+ description: Important highlight B is equally important
+ url: https://gmail.com
+ - title: Page A
+ description: Page A is important too
+ url: /privacy/
+ - infobar:
+ title: Infobar title
+ subtitle: Subtitle
+ description: About a sentence worth of description here
+ button: Button text
+ url: /faq/
+---
+
diff --git a/misc/404.html b/misc/404.html
new file mode 100644
index 0000000..daa6f6e
--- /dev/null
+++ b/misc/404.html
@@ -0,0 +1,26 @@
+---
+layout: skeleton
+title: 404 Error
+permalink: /404.html
+---
+
+
+
+
+
404
+
+
Page not found :(
+
The requested page could not be found.
+
diff --git a/misc/custom.scss b/misc/custom.scss
new file mode 100644
index 0000000..4f483bb
--- /dev/null
+++ b/misc/custom.scss
@@ -0,0 +1,337 @@
+---
+
+---
+
+@charset "utf-8";
+
+// Agency brand colors
+$primary: {{- site.colors.primary-color -}};
+$secondary: {{- site.colors.secondary-color -}};
+$secondary-hover: lighten($secondary, 10%);
+
+{%- for media-color in site.colors.media-colors -%}
+ ${{- media-color.title -}}: {{- media-color.color -}};
+{%- endfor -%}
+
+$gap: 32px !default;
+$desktop: 960px + (2 * $gap) !default;
+
+// Mixins
+
+@mixin touch() {
+ @media screen and (max-width: $desktop - 1px){
+ @content
+ }
+}
+
+@mixin desktop() {
+ @media screen and (min-width: $desktop){
+ @content
+ }
+}
+
+// Background
+.bg{
+ &-primary{
+ background-color: $primary !important;
+ }
+ &-secondary {
+ background-color: $secondary !important;
+ }
+ &-media-color {
+ {%- for media-color in site.colors.media-colors -%}
+ &-{{- forloop.index -}} {
+ background-color: ${{- media-color.title -}};
+ &:hover {
+ background-color: darken(${{- media-color.title -}}, 10%);
+ }
+ }
+ {%- endfor -%}
+ }
+ &-1{
+ //background-color: $primary;
+ background: url('https://c.stocksy.com/a/YY3500/z0/1205314.jpg') no-repeat left 50%;
+ -webkit-background-size: cover;
+ background-size: cover;
+ }
+ &-2{
+ //background-color: $info;
+ background: url('https://c.stocksy.com/a/FY3500/z0/1205295.jpg') no-repeat left 50%;
+ -webkit-background-size: cover;
+ background-size: cover;
+ }
+ &-3{
+ //background-color: $warning;
+ background: url('https://c.stocksy.com/a/L1o500/z0/1383923.jpg') no-repeat left 50%;
+ -webkit-background-size: cover;
+ background-size: cover;
+ }
+ &-4{
+ //background-color: $danger;
+ background: url('https://c.stocksy.com/a/Z22000/z0/7847.jpg') no-repeat left 50%;
+ -webkit-background-size: cover;
+ background-size: cover;
+ }
+ &-gradient{
+ background: #b41e8e;
+ background: -moz-linear-gradient(45deg, #b41e8e 0%, #5c3f9e 50%, #0061af 100%);
+ background: -webkit-linear-gradient(45deg, #b41e8e 0%,#5c3f9e 50%,#0061af 100%);
+ background: linear-gradient(45deg, #b41e8e 0%,#5c3f9e 50%,#0061af 100%);
+ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b41e8e', endColorstr='#0061af',GradientType=1 );
+ }
+ &-singpass{
+ background: #be2e7d; /* Old browsers */
+ background: -moz-linear-gradient(45deg, #be2e7d 0%, #d64e54 100%); /* FF3.6-15 */
+ background: -webkit-linear-gradient(45deg, #be2e7d 0%,#d64e54 100%); /* Chrome10-25,Safari5.1-6 */
+ background: linear-gradient(45deg, #be2e7d 0%,#d64e54 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
+ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#be2e7d', endColorstr='#d64e54',GradientType=1 ); /*IE6-9 fallback on horizontal gradient*/
+ }
+ &-beeline{
+ background: #009d62; /* Old browsers */
+ background: -moz-linear-gradient(45deg, #009d62 0%, #0094d3 100%); /* FF3.6-15 */
+ background: -webkit-linear-gradient(45deg, #009d62 0%,#0094d3 100%); /* Chrome10-25,Safari5.1-6 */
+ background: linear-gradient(45deg, #009d62 0%,#0094d3 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
+ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#009d62', endColorstr='#0094d3',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
+
+ }
+ &-parkingsg{
+ background: #0164b6; /* Old browsers */
+ background: -moz-linear-gradient(45deg, #0164b6 0%, #04a4e3 100%); /* FF3.6-15 */
+ background: -webkit-linear-gradient(45deg, #0164b6 0%,#04a4e3 100%); /* Chrome10-25,Safari5.1-6 */
+ background: linear-gradient(45deg, #0164b6 0%,#04a4e3 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
+ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0164b6', endColorstr='#04a4e3',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
+ }
+}
+
+// Color definitions
+.is {
+ &-primary {
+ background-color: $primary !important;
+ }
+ &-secondary {
+ background-color: $secondary !important;
+ }
+}
+
+// Text color
+.has-text-primary {
+ color: $primary !important;
+}
+.has-text-secondary {
+ color: $secondary !important;
+}
+
+// Menu/Left-nav
+.bp-menu-list a.is-active {
+ color: $secondary !important;
+ border-bottom: 2px solid $secondary !important;
+ &:hover {
+ border-bottom: 2px solid $secondary !important;
+ }
+}
+.bp-menu-list a:hover {
+ color: $secondary !important;
+ border-bottom: 1px solid $secondary !important;
+}
+
+// Button
+
+.bp-button.is-text span {
+ &:hover, &:focus {
+ color: $secondary;
+ }
+}
+.bp-button:hover {
+ color: $secondary;
+}
+
+// Secondary button
+.bp-sec-button {
+ color: $secondary;
+ & span {
+ border-bottom: 2px solid $secondary !important;
+ }
+ &:hover {
+ & span {
+ border-bottom: 2px solid $secondary-hover !important;
+ color: $secondary-hover !important;
+ }
+ & i {
+ color: $secondary-hover !important;
+ }
+ }
+}
+
+// Bottom navigation bar
+.bottom-navigation {
+ a {
+ background-color: $secondary;
+ &:hover{
+ background-color: darken($secondary,10%) !important;
+ }
+ }
+}
+
+.bp-section.bp-section-pagetitle {
+ background-color: $primary !important;
+}
+
+// Pagination
+.pagination {
+ span {
+ &:hover {
+ border-color: $secondary;
+ color: $secondary;
+ }
+ &.selected-page:hover {
+ background-color: $secondary;
+ border-color: $secondary;
+ }
+ }
+ .selected-page {
+ background-color: $secondary;
+ border-color: $secondary;
+ }
+}
+
+
+// Homepage
+#key-highlights{
+ background-color: $primary;
+ .col {
+ border-left:1px solid darken($primary,10%);
+ @include touch(){
+ border-top:1px solid darken($primary,10%);
+ }
+ &:hover{
+ background-color: darken($primary,10%);
+ }
+ }
+}
+
+// Navbar
+.navbar{
+ &-start{
+ .navbar-item{
+ a{
+ &.active{
+ @include touch(){
+ border-bottom:2px solid $secondary;
+ }
+ }
+ }
+ }
+ }
+ .navbar-link:hover:after {
+ border-bottom: 1px solid $secondary;
+ border-left: 1px solid $secondary;
+ }
+
+ .navbar-item{
+ .sub-link.is-active{
+ color:$secondary;
+ }
+
+ .selector{
+ &.active{
+ background-color:$secondary;
+ }
+ }
+ &.active{
+ @include desktop(){
+ border-bottom:1px solid $secondary;
+ }
+ }
+ }
+.navbar-item:hover {
+ a {
+ color:$secondary;
+ }
+ .selector {
+ background-color:$secondary;
+ }
+ }
+}
+
+// Post-content
+.content {
+ h1, h2, h3, h4, h5 {
+ color: $secondary;
+ strong {
+ color: $secondary;
+ }
+ }
+ blockquote {
+ border-left-color: $secondary;
+ }
+ blockquote > p {
+ color: $secondary;
+ }
+ blockquote > ul {
+ color: $secondary;
+ }
+}
+
+// Media category buttons - not used now but will be used in the future
+
+.media-category-button {
+ text-decoration: none !important;
+ color: #323232;
+ margin-right: 2.5rem;
+ letter-spacing: 0.5px;
+}
+
+.media-category-button:hover, .media-category-button.selected {
+ color: $secondary;
+ border-bottom: 2px solid $secondary;
+}
+
+// CSS to be refactored
+.content img.digital-transformation-icon {
+ height: 80px;
+ width: 80px;
+ margin-left: 0;
+}
+
+.news-content {
+ position: relative;
+ margin-left: 1rem;
+ margin-right: 1rem;
+ padding: 2rem;
+ margin-top: -5rem;
+ background-color: white;
+}
+
+.tag {
+ display: block;
+}
+
+#business {
+ display: none;
+}
+#government {
+ display: none;
+}
+
+.image-card:hover {
+ .news-content {
+ background-color: darken(#ffffff, 10%);
+ }
+}
+
+.hero-dropdown {
+ display: flex;
+ padding-top: 1.75rem;
+ padding-bottom: 1.75rem;
+}
+
+.is-centered {
+ margin: auto;
+}
+
+.is-three-fifths-mobile {
+ width: 50%;
+ @include touch() {
+ width: 100%;
+ }
+}
\ No newline at end of file
diff --git a/misc/search.md b/misc/search.md
new file mode 100644
index 0000000..0930a58
--- /dev/null
+++ b/misc/search.md
@@ -0,0 +1,6 @@
+---
+layout: search
+title: Search
+permalink: /search/
+breadcrumb: Search
+---
\ No newline at end of file
diff --git a/netlify.toml b/netlify.toml
new file mode 100644
index 0000000..e69de29
diff --git a/pages/contact-us.md b/pages/contact-us.md
new file mode 100644
index 0000000..1d26717
--- /dev/null
+++ b/pages/contact-us.md
@@ -0,0 +1,32 @@
+---
+layout: contact_us
+title: Contact Us
+permalink: /contact-us/
+agency_name: Agency Name
+locations:
+ - title: Main Office
+ address:
+ - 31 Sesame Street
+ - Big Bird Building
+ - Singapore 123456
+ operating_hours:
+ - days: Mon - Fri
+ time: 8.30am - 6.00pm
+ description: Closed on Public Holidays
+ - days: Sat
+ time: 8.30am - 12.00pm
+ - title: Branch Office
+ address:
+ - 109 North Bridge Road
+ - Singapore 179097
+ maps_link: https://goo.gl/maps/C8VfxphGxT2GsfcaA
+contacts:
+ - title: General Enquiries & Feedback
+ content:
+ - phone: +65 6123 4567
+ - email: enquiries@abc.gov.sg
+ - other: Any text here including HTML
+ - title: Careers
+ content:
+ - email: careers@abc.gov.sg
+---
diff --git a/pages/example-page.md b/pages/example-page.md
new file mode 100644
index 0000000..84e3d4d
--- /dev/null
+++ b/pages/example-page.md
@@ -0,0 +1,4 @@
+---
+title: Example Page
+permalink: /example-page/
+---
diff --git a/pages/faq.md b/pages/faq.md
new file mode 100644
index 0000000..18ccde1
--- /dev/null
+++ b/pages/faq.md
@@ -0,0 +1,12 @@
+---
+title: FAQ
+permalink: /faq/
+---
+
+### **FAQ**
+
+1. Interdum et malesuada fames ac ante ipsum primis in faucibus. In sagittis ut nisl eget suscipit. Morbi lorem ligula, tincidunt et viverra et, gravida sit amet velit. Duis posuere mi lectus, molestie viverra metus consectetur quis. Fusce dignissim arcu enim, id faucibus felis dignissim ut. Suspendisse potenti. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Phasellus blandit sem sit amet neque fringilla cursus. Ut semper imperdiet dolor ac vulputate. Phasellus in accumsan urna. Suspendisse potenti. Curabitur porttitor risus a dolor pellentesque, sed dignissim ligula laoreet. Nullam lacus ligula, malesuada ac vestibulum vitae, condimentum nec sem.
+
+2. Integer semper ultrices lorem ut sodales. Praesent rutrum vestibulum quam, ac rhoncus tortor ullamcorper sit amet. Curabitur sed hendrerit sem, ut dignissim nisi. Aenean eleifend in ligula at posuere. Phasellus turpis justo, mollis eget sagittis vel, viverra quis enim. Praesent luctus, elit ac mattis cursus, dui lorem sollicitudin urna, ac molestie lacus elit eget eros. Sed aliquam purus vitae tellus consequat rutrum. Etiam tristique, mi ut dapibus tristique, elit urna rhoncus leo, ac luctus augue ante eget felis. Fusce nisl enim, tempus a faucibus aliquam, lobortis at est. Donec nec mollis nibh. Donec vitae ipsum risus. Pellentesque eu est sed diam pulvinar dictum in sit amet purus. Fusce convallis risus tortor.
+
+3. Pellentesque malesuada leo libero, et commodo lorem consequat quis. Etiam lobortis porttitor lobortis. Quisque pulvinar lorem eu dolor dictum dignissim. Sed faucibus, risus ut euismod viverra, massa nisi suscipit tellus, eu bibendum mi lorem nec mauris. Pellentesque tincidunt sem id gravida consectetur. Pellentesque id lacus ac ipsum ultricies hendrerit nec a tellus. Aliquam nec dapibus sapien. Sed laoreet sem at semper maximus.
\ No newline at end of file
diff --git a/pages/privacy.md b/pages/privacy.md
new file mode 100644
index 0000000..7a90116
--- /dev/null
+++ b/pages/privacy.md
@@ -0,0 +1,12 @@
+---
+title: Privacy Statement
+permalink: /privacy/
+---
+
+### **Government Agency Privacy Statement**
+
+1. Interdum et malesuada fames ac ante ipsum primis in faucibus. In sagittis ut nisl eget suscipit. Morbi lorem ligula, tincidunt et viverra et, gravida sit amet velit. Duis posuere mi lectus, molestie viverra metus consectetur quis. Fusce dignissim arcu enim, id faucibus felis dignissim ut. Suspendisse potenti. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Phasellus blandit sem sit amet neque fringilla cursus. Ut semper imperdiet dolor ac vulputate. Phasellus in accumsan urna. Suspendisse potenti. Curabitur porttitor risus a dolor pellentesque, sed dignissim ligula laoreet. Nullam lacus ligula, malesuada ac vestibulum vitae, condimentum nec sem.
+
+2. Integer semper ultrices lorem ut sodales. Praesent rutrum vestibulum quam, ac rhoncus tortor ullamcorper sit amet. Curabitur sed hendrerit sem, ut dignissim nisi. Aenean eleifend in ligula at posuere. Phasellus turpis justo, mollis eget sagittis vel, viverra quis enim. Praesent luctus, elit ac mattis cursus, dui lorem sollicitudin urna, ac molestie lacus elit eget eros. Sed aliquam purus vitae tellus consequat rutrum. Etiam tristique, mi ut dapibus tristique, elit urna rhoncus leo, ac luctus augue ante eget felis. Fusce nisl enim, tempus a faucibus aliquam, lobortis at est. Donec nec mollis nibh. Donec vitae ipsum risus. Pellentesque eu est sed diam pulvinar dictum in sit amet purus. Fusce convallis risus tortor.
+
+3. Pellentesque malesuada leo libero, et commodo lorem consequat quis. Etiam lobortis porttitor lobortis. Quisque pulvinar lorem eu dolor dictum dignissim. Sed faucibus, risus ut euismod viverra, massa nisi suscipit tellus, eu bibendum mi lorem nec mauris. Pellentesque tincidunt sem id gravida consectetur. Pellentesque id lacus ac ipsum ultricies hendrerit nec a tellus. Aliquam nec dapibus sapien. Sed laoreet sem at semper maximus.
diff --git a/pages/terms-of-use.md b/pages/terms-of-use.md
new file mode 100644
index 0000000..d55050a
--- /dev/null
+++ b/pages/terms-of-use.md
@@ -0,0 +1,13 @@
+---
+title: Terms of Use
+permalink: /terms-of-use/
+---
+### **General Terms and Conditions on the Use of the Isomer Pages Website**
+
+#### **General Legal Information**
+
+1. Interdum et malesuada fames ac ante ipsum primis in faucibus. In sagittis ut nisl eget suscipit. Morbi lorem ligula, tincidunt et viverra et, gravida sit amet velit. Duis posuere mi lectus, molestie viverra metus consectetur quis. Fusce dignissim arcu enim, id faucibus felis dignissim ut. Suspendisse potenti. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Phasellus blandit sem sit amet neque fringilla cursus. Ut semper imperdiet dolor ac vulputate. Phasellus in accumsan urna. Suspendisse potenti. Curabitur porttitor risus a dolor pellentesque, sed dignissim ligula laoreet. Nullam lacus ligula, malesuada ac vestibulum vitae, condimentum nec sem.
+
+2. Integer semper ultrices lorem ut sodales. Praesent rutrum vestibulum quam, ac rhoncus tortor ullamcorper sit amet. Curabitur sed hendrerit sem, ut dignissim nisi. Aenean eleifend in ligula at posuere. Phasellus turpis justo, mollis eget sagittis vel, viverra quis enim. Praesent luctus, elit ac mattis cursus, dui lorem sollicitudin urna, ac molestie lacus elit eget eros. Sed aliquam purus vitae tellus consequat rutrum. Etiam tristique, mi ut dapibus tristique, elit urna rhoncus leo, ac luctus augue ante eget felis. Fusce nisl enim, tempus a faucibus aliquam, lobortis at est. Donec nec mollis nibh. Donec vitae ipsum risus. Pellentesque eu est sed diam pulvinar dictum in sit amet purus. Fusce convallis risus tortor.
+
+3. Pellentesque malesuada leo libero, et commodo lorem consequat quis. Etiam lobortis porttitor lobortis. Quisque pulvinar lorem eu dolor dictum dignissim. Sed faucibus, risus ut euismod viverra, massa nisi suscipit tellus, eu bibendum mi lorem nec mauris. Pellentesque tincidunt sem id gravida consectetur. Pellentesque id lacus ac ipsum ultricies hendrerit nec a tellus. Aliquam nec dapibus sapien. Sed laoreet sem at semper maximus.
\ No newline at end of file