diff --git a/ghost/admin/app/controllers/settings/design/change-theme.js b/ghost/admin/app/controllers/settings/design/change-theme.js index 3851856d4f..78d4f99c07 100644 --- a/ghost/admin/app/controllers/settings/design/change-theme.js +++ b/ghost/admin/app/controllers/settings/design/change-theme.js @@ -11,37 +11,103 @@ export default class ChangeThemeController extends Controller { @tracked themes = this.store.peekAll('theme'); marketplaceThemes = [{ + name: 'Journal', + category: 'Newsletter', + url: 'https://github.com/TryGhost/Journal', + previewUrl: 'https://journal.ghost.io/', + ref: 'TryGhost/Journal', + image: 'assets/img/themes/Journal.png' + }, { name: 'Edition', category: 'Newsletter', url: 'https://github.com/TryGhost/Edition', previewUrl: 'https://edition.ghost.io/', ref: 'TryGhost/Edition', - image: 'assets/img/themes/Edition.jpg', - shortImage: 'assets/img/themes/Edition-cut.jpg' + image: 'assets/img/themes/Edition.png' + }, { + name: 'Digest', + category: 'Newsletter', + url: 'https://github.com/TryGhost/Digest', + previewUrl: 'https://digest.ghost.io/', + ref: 'TryGhost/Digest', + image: 'assets/img/themes/Digest.png' + }, { + name: 'Bulletin', + category: 'Newsletter', + url: 'https://github.com/TryGhost/Bulletin', + previewUrl: 'https://bulletin.ghost.io/', + ref: 'TryGhost/Bulletin', + image: 'assets/img/themes/Bulletin.png' + }, { + name: 'Dawn', + category: 'Newsletter', + url: 'https://github.com/TryGhost/Dawn', + previewUrl: 'https://dawn.ghost.io/', + ref: 'TryGhost/Dawn', + image: 'assets/img/themes/Dawn.png' }, { name: 'Alto', category: 'Blog', url: 'https://github.com/TryGhost/Alto', previewUrl: 'https://alto.ghost.io', ref: 'TryGhost/Alto', - image: 'assets/img/themes/Alto.jpg', - shortImage: 'assets/img/themes/Alto-cut.jpg' + image: 'assets/img/themes/Alto.png' }, { - name: 'London', + name: 'Edge', category: 'Photography', - url: 'https://github.com/TryGhost/London', - previewUrl: 'https://london.ghost.io', - ref: 'TryGhost/London', - image: 'assets/img/themes/London.jpg', - shortImage: 'assets/img/themes/London-cut.jpg' + url: 'https://github.com/TryGhost/Edge', + previewUrl: 'https://edge.ghost.io', + ref: 'TryGhost/Edge', + image: 'assets/img/themes/Edge.png' }, { name: 'Ease', category: 'Documentation', url: 'https://github.com/TryGhost/Ease', previewUrl: 'https://ease.ghost.io', ref: 'TryGhost/Ease', - image: 'assets/img/themes/Ease.jpg', - shortImage: 'assets/img/themes/Ease-cut.jpg' + image: 'assets/img/themes/Ease.png' + }, { + name: 'Ruby', + category: 'Magazine', + url: 'https://github.com/TryGhost/Ruby', + previewUrl: 'https://ruby.ghost.io', + ref: 'TryGhost/Ruby', + image: 'assets/img/themes/Ruby.png' + }, { + name: 'Dope', + category: 'Magazine', + url: 'https://github.com/TryGhost/Dope', + previewUrl: 'https://dope.ghost.io', + ref: 'TryGhost/Dope', + image: 'assets/img/themes/Dope.png' + }, { + name: 'Wave', + category: 'Podcast', + url: 'https://github.com/TryGhost/Wave', + previewUrl: 'https://wave.ghost.io', + ref: 'TryGhost/Wave', + image: 'assets/img/themes/Wave.png' + }, { + name: 'London', + category: 'Photography', + url: 'https://github.com/TryGhost/London', + previewUrl: 'https://london.ghost.io', + ref: 'TryGhost/London', + image: 'assets/img/themes/London.jpg' + }, { + name: 'Editorial', + category: 'Magazine', + url: 'https://github.com/TryGhost/Editorial', + previewUrl: 'https://editorial.ghost.io', + ref: 'TryGhost/Editorial', + image: 'assets/img/themes/Editorial.jpg' + }, { + name: 'Massively', + category: 'Magazine', + url: 'https://github.com/TryGhost/Massively', + previewUrl: 'https://massively.ghost.io', + ref: 'TryGhost/Massively', + image: 'assets/img/themes/Massively.jpg' }] @action diff --git a/ghost/admin/public/assets/img/themes/Alto.png b/ghost/admin/public/assets/img/themes/Alto.png new file mode 100644 index 0000000000..b79aee6881 Binary files /dev/null and b/ghost/admin/public/assets/img/themes/Alto.png differ diff --git a/ghost/admin/public/assets/img/themes/Bulletin.png b/ghost/admin/public/assets/img/themes/Bulletin.png new file mode 100644 index 0000000000..64cf4ba73b Binary files /dev/null and b/ghost/admin/public/assets/img/themes/Bulletin.png differ diff --git a/ghost/admin/public/assets/img/themes/Dawn.png b/ghost/admin/public/assets/img/themes/Dawn.png new file mode 100644 index 0000000000..507a9db5eb Binary files /dev/null and b/ghost/admin/public/assets/img/themes/Dawn.png differ diff --git a/ghost/admin/public/assets/img/themes/Digest.png b/ghost/admin/public/assets/img/themes/Digest.png new file mode 100644 index 0000000000..ac35ac80a0 Binary files /dev/null and b/ghost/admin/public/assets/img/themes/Digest.png differ diff --git a/ghost/admin/public/assets/img/themes/Dope.png b/ghost/admin/public/assets/img/themes/Dope.png new file mode 100644 index 0000000000..a49bbfe732 Binary files /dev/null and b/ghost/admin/public/assets/img/themes/Dope.png differ diff --git a/ghost/admin/public/assets/img/themes/Ease.png b/ghost/admin/public/assets/img/themes/Ease.png new file mode 100644 index 0000000000..3464342068 Binary files /dev/null and b/ghost/admin/public/assets/img/themes/Ease.png differ diff --git a/ghost/admin/public/assets/img/themes/Edge.png b/ghost/admin/public/assets/img/themes/Edge.png new file mode 100644 index 0000000000..e6b396d4f9 Binary files /dev/null and b/ghost/admin/public/assets/img/themes/Edge.png differ diff --git a/ghost/admin/public/assets/img/themes/Edition.png b/ghost/admin/public/assets/img/themes/Edition.png new file mode 100644 index 0000000000..e6e84cf56a Binary files /dev/null and b/ghost/admin/public/assets/img/themes/Edition.png differ diff --git a/ghost/admin/public/assets/img/themes/Editorial.jpg b/ghost/admin/public/assets/img/themes/Editorial.jpg new file mode 100644 index 0000000000..7131dc2bac Binary files /dev/null and b/ghost/admin/public/assets/img/themes/Editorial.jpg differ diff --git a/ghost/admin/public/assets/img/themes/Journal.png b/ghost/admin/public/assets/img/themes/Journal.png new file mode 100644 index 0000000000..3cb2aa11bf Binary files /dev/null and b/ghost/admin/public/assets/img/themes/Journal.png differ diff --git a/ghost/admin/public/assets/img/themes/London.jpg b/ghost/admin/public/assets/img/themes/London.jpg index 70dbe59848..86daa5a725 100644 Binary files a/ghost/admin/public/assets/img/themes/London.jpg and b/ghost/admin/public/assets/img/themes/London.jpg differ diff --git a/ghost/admin/public/assets/img/themes/Massively.jpg b/ghost/admin/public/assets/img/themes/Massively.jpg new file mode 100644 index 0000000000..1ee09de159 Binary files /dev/null and b/ghost/admin/public/assets/img/themes/Massively.jpg differ diff --git a/ghost/admin/public/assets/img/themes/Ruby.png b/ghost/admin/public/assets/img/themes/Ruby.png new file mode 100644 index 0000000000..90bec3cd91 Binary files /dev/null and b/ghost/admin/public/assets/img/themes/Ruby.png differ diff --git a/ghost/admin/public/assets/img/themes/Wave.png b/ghost/admin/public/assets/img/themes/Wave.png new file mode 100644 index 0000000000..7d01c800ba Binary files /dev/null and b/ghost/admin/public/assets/img/themes/Wave.png differ