Saved: 2018-03-26 09:25

Torey Heinz committed Mar 27, 2018
commit b2c2042a8013d443fdbc3698429a5ef4ccb3adab
Showing 3 changed files with 11 additions and 6 deletions
app/content_types/project_requests.yml +1 -1
@@ @@ -20,7 +20,7 @@ order_by: manually
# group_by: <your field>
# Activate public 'create' API (e.g for a contact form)
- # public_submission_enabled: false
+ public_submission_enabled: true
# Array of emails to be notified of new entries made with the public API
# public_submission_accounts: ['john@example.com']
app/content_types/services.yml +2 -2
@@ @@ -41,9 +41,9 @@ fields:
- brief: # The lowercase, underscored name of the field
label: Brief # Human readable name of the field
- type: text
+ type: string
required: false
- hint: A brief intro to this Offering Type
+ hint: A brief intro to this Service
localized: false
# text_formatting: html # html (uses rich text editor), markdown or text (uses plain text editor)
app/views/snippets/metatags.liquid +8 -3
@@ @@ -4,14 +4,19 @@
{% capture page_title %}{{ page.title | escape }} | {{ site.name }}{% endcapture %}
{% endif %}
+ {% if page.featured_image %}
+ {% capture image_url %}{{ page.featured_image | theme_image_url | resize: '1200x1200' }}{% endcapture %}
+ {% else %}
+ {% capture image_url %}{{ 'CanvasInnovations-logo.jpg' | theme_image_url | resize: '1200x1200'}}{% endcapture %}
+ {% endif %}
+
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ page_title }}</title>
{% seo %}
- <meta property="og:title" content="{{ page.title | escape }} | VS America" />
- <meta property="og:image" content="{{ 'logo.png' | theme_image_url }}" />
+ <meta property="og:title" content="{{ page.title | escape }} | Canvas Innovations" />
+ <meta property="og:image" content="{{ image_url }}" />
<meta property="og:site_name" content="{{ site.name }}" />
<link rel="shortcut icon" href="{{ 'favicon.ico' | theme_image_url }}">
- <meta name="trumbowyg-icons-path" content="{{ 'trumbowyg-icons.svg' | theme_image_url }}">