-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3855 from BirkbeckCTP/b_1_5_1
Merge of 1.5.1-RC-4
- Loading branch information
Showing
12 changed files
with
99 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
from semver import Version | ||
__version__ = Version.parse("1.5.1-RC-1") | ||
from packaging import version | ||
__version__ = version.parse("1.5.1-RC-4") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
<meta name="twitter:card" content="summary"> | ||
{% if journal_settings.general.twitter_handle %}<meta name="twitter:site" content="{{ journal_settings.general.twitter_handle }}">{% endif %} | ||
<meta name="twitter:title" content="{{ article.title }}"> | ||
<meta name="twitter:description" content="{{ article.abstract }}"> | ||
<meta name="twitter:description" content="{{ article.abstract|striptags }}"> | ||
{% if article.correspondence_author.twitter_handle %}<meta name="twitter:creator" content="{{ article.correspondence_author.twitter_handle }}">{% endif %} | ||
<meta name="twitter:image" content="{{ article.get_meta_image_path }}"> | ||
|
||
<meta property="og:title" content="{{ article.title }}" /> | ||
<meta property="og:type" content="article" /> | ||
<meta property="og:url" content="{{ article.url }}" /> | ||
<meta property="og:image" content="{{ article.get_meta_image_path }}" /> | ||
<meta property="og:description" content="{{ article.abstract }}" /> | ||
<meta property="og:description" content="{{ article.abstract|striptags }}" /> | ||
<meta property="og:site_name" content="{{ request.journal.name }}" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,6 +27,7 @@ | |
<link rel="icon" href="{{ request.repository.favicon.url }}" type="image/vnd.microsoft.icon"/> | ||
{% endif %} | ||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"> | ||
<link href="https://fonts.googleapis.com/icon?family=Roboto" rel="stylesheet"> | ||
<link | ||
rel="stylesheet" | ||
href="https://cdn.jsdelivr.net/npm/@materializecss/[email protected]/dist/css/materialize.min.css"> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters