Isomer Guide (Legacy sites)
UpdatesOfficial WebsiteGithub Repository
  • Introduction
  • Accounts & Setup
    • Github Account Setup
      • Set up 2FA
    • Site Access
  • Get started
    • Your first edit
    • Create a new page
    • Create a new collection
    • Format your content
      • HTML cheatsheet
      • Markdown cheatsheet
    • Page config
  • Configurations
    • Config.yml file
      • Site color
    • Homepage
      • Basics
      • Hero Banner
      • Infobar
      • Infopic
      • Resources
      • Sample configuration
    • Pages
      • Configuration
      • Second and Third Level Navigation Pages
    • Navigation Bar
      • Configuration
    • Resources
      • Setup
      • Posts
      • Resources with v2 migration
    • Contact Us
      • Configuration
    • Footer
  • Features
    • Analytics and tracking
      • WOGAA
      • Google Analytics
      • Facebook Pixel
      • LinkedIn Insights
    • IsomerSSL
    • Content Recommender
  • Publish your changes
    • Overview
    • Creating a pull request
    • Approve a pull request
    • Merge a pull request
    • Site Launch
      • How to make records changes on ITSM?
  • Frequently Asked Questions (FAQ)
    • General
    • Security
    • Pull requests
    • Digital KPI
    • Migration v1 to v2
  • Updates
Powered by GitBook
On this page

Was this helpful?

  1. Configurations
  2. Contact Us

Configuration

The configuration options available are:

  • layout: this option must be set to contact_us

  • title: the title of the page which will be visible in the browser window

  • permalink: the path to the page, e.g. /contact-us/. Except for slashes denoting a category, the permalink should be alphanumeric (consisting only of letters, numbers, and dashes). No special characters such as ? or % should be used. For aesthetic reasons, we further recommend that you avoid the use of capital letters

  • agency_name: the text that will appear after "Get in touch with". Defaults to the title in _config.yml if left unspecified. Optional

  • locations: a list of addresses to be displayed. Optional. Each location supports the following configuration options:

    • title: the title or name of this location, e.g. "HQ"

    • address: the address of the location. See the sample configuration below for an example of a multi-line address

    • maps_link: a link to the address on an online map service such as Google Maps or OneMap. If left unspecified, a Google Maps link will be automatically generated from the address. Optional

    • operating_hours: a list of days, time, and description of the location's operating hours. Optional

  • contacts: a list of contact details to be displayed. Optional. Each contact supports the following configuration options:

    • title: the title or name of this contact, e.g. "General Enquiries"

    • content: a list of phone, email, or other contacts under this title

Sample configuration of a contact us page:

---
layout: contact_us
title: Contact Us
permalink: /contact-us/
agency_name: Ministry of ABC
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 <i>including HTML</i>
  - title: Careers
    content:
    - email: careers@abc.gov.sg
---

PreviousContact UsNextFooter

Last updated 4 years ago

Was this helpful?