Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pelicanconf.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@


AUTHOR = 'Open Library of Humanities'
SITENAME = 'Janeway Systems'
SITEURL = ""
SITENAME = 'Janeway'
SITEURL = "https://janeway.systems"

PATH = "content"

Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
58 changes: 58 additions & 0 deletions themes/alpha/static/images/rainbow-road-inkscape.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 2 additions & 3 deletions themes/alpha/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,8 @@
<meta charset="utf-8" />
<meta name="generator" content="Pelican" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
{% if SITESUBTITLE %}
<meta name="description" content="{{ SITESUBTITLE }}" />
{% endif %}
{% include "meta.html" %}

{% if STYLESHEET_URL %}
<link
rel="stylesheet"
Expand Down
26 changes: 26 additions & 0 deletions themes/alpha/templates/meta.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<meta property="og:title" content="{{ SITENAME|striptags }}" />
<meta name="twitter:title" content="{{ SITENAME|striptags }}" />

{% set meta_description -%}
A platform for digital publishing that helps you manage manuscript
submissions, including review, copyediting, typesetting and publication.
{%- endset %}
<meta name="description" content="{{ meta_description }}" />
<meta property="og:description" content="{{ meta_description }}" />
<meta name="twitter:description" content="{{ meta_description }}" />

{% set meta_image = "theme/images/rainbow-road-1200-630.png" %}
<meta
property="og:image"
content="{{ SITEURL }}{{ static }}/{{ meta_image }}"
/>
<meta
property="og:image:alt"
content="An abstract brand image with bands of muted colors stretching up and out into a dark expanse"
/>
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta
name="twitter:image"
content="{{ SITEURL }}{{ static }}/{{ meta_image }}"
/>
Loading