diff --git a/README.md b/README.md index 1021bf6b..0c0aef82 100644 --- a/README.md +++ b/README.md @@ -1,34 +1,19 @@ -# Ghost Starter Theme +# Leaders - Ghost CMS theme -A starter framework for Ghost themes! Fork this repository and start your development here with all the main things you need to develop a custom Ghost theme. - - - -# First time using a Ghost theme? - -Ghost uses a simple templating language called [Handlebars](http://handlebarsjs.com/) for its themes. - -We've documented our default theme pretty heavily so that it should be fairly easy to work out what's going on just by reading the code and the comments. Once you feel comfortable with how everything works, we also have full [theme API documentation](https://themes.ghost.org) which explains every possible Handlebars helper and template. - -**The main files are:** - -- `default.hbs` - The main template file -- `index.hbs` - Used for the home page -- `post.hbs` - Used for individual posts -- `page.hbs` - Used for individual pages -- `tag.hbs` - Used for tag archives -- `author.hbs` - Used for author archives - -One neat trick is that you can also create custom one-off templates just by adding the slug of a page to a template file. For example: - -- `page-about.hbs` - Custom template for the `/about/` page -- `tag-news.hbs` - Custom template for `/tag/news/` archive -- `author-ali.hbs` - Custom template for `/author/ali/` archive +Custom theme created for and by Peter Krzyzek. # Development +First run a local instance with: + +```bash +ghost start +``` + +And then follow the original theme dev instructions below: + Styles are compiled using Gulp/PostCSS to polyfill future CSS spec. You'll need [Node](https://nodejs.org/), [Yarn](https://yarnpkg.com/) and [Gulp](https://gulpjs.com) installed globally. After that, from the theme's root directory: ```bash @@ -49,13 +34,6 @@ yarn zip -# PostCSS Features Used - -- Autoprefixer - Don't worry about writing browser prefixes of any kind, it's all done automatically with support for the latest 2 major versions of every browser. -- [Color Mod](https://github.com/jonathantneal/postcss-color-mod-function) - - - # Copyright & License -Copyright (c) 2013-2022 Ghost Foundation - Released under the [MIT license](LICENSE). +Copyright (c) 2023 Piotr Krzyzek of Chykalophia - Released under the [MIT license](LICENSE). diff --git a/assets/css/screen.css b/assets/css/screen.css index b690981c..42bb74b0 100644 --- a/assets/css/screen.css +++ b/assets/css/screen.css @@ -15,106 +15,128 @@ production stylesheet in assets/built/screen.css using: gulp dev /* Main - Your styles here! Edit below /* ---------------------------------------------------------- */ - +/* inter-100 - latin */ @font-face { - font-display: swap; + font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */ font-family: 'Inter'; font-style: normal; font-weight: 100; - src: url('/assets/fonts/inter-v12-latin-regular.eot'); /* IE9 Compat Modes */ - src: url('/assets/fonts/inter-v12-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ - url('/assets/fonts/inter-v12-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ - url('/assets/fonts/inter-v12-latin-regular.woff') format('woff'), /* Modern Browsers */ - url('/assets/fonts/inter-v12-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ - url('/assets/fonts/inter-v12-latin-regular.svg#Inter') format('svg'); /* Legacy iOS */ - } + src: url('/assets/fonts/inter-v12-latin-100.eot'); /* IE9 Compat Modes */ + src: url('/assets/fonts/inter-v12-latin-100.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ + url('/assets/fonts/inter-v12-latin-100.woff2') format('woff2'), /* Super Modern Browsers */ + url('/assets/fonts/inter-v12-latin-100.woff') format('woff'), /* Modern Browsers */ + url('/assets/fonts/inter-v12-latin-100.ttf') format('truetype'), /* Safari, Android, iOS */ + url('/assets/fonts/inter-v12-latin-100.svg#Inter') format('svg'); /* Legacy iOS */ +} + +/* inter-200 - latin */ @font-face { - font-display: swap; + font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */ font-family: 'Inter'; font-style: normal; font-weight: 200; - src: url('/assets/fonts/inter-v12-latin-regular.eot'); /* IE9 Compat Modes */ - src: url('/assets/fonts/inter-v12-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ - url('/assets/fonts/inter-v12-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ - url('/assets/fonts/inter-v12-latin-regular.woff') format('woff'), /* Modern Browsers */ - url('/assets/fonts/inter-v12-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ - url('/assets/fonts/inter-v12-latin-regular.svg#Inter') format('svg'); /* Legacy iOS */ - } + src: url('/assets/fonts/inter-v12-latin-200.eot'); /* IE9 Compat Modes */ + src: url('/assets/fonts/inter-v12-latin-200.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ + url('/assets/fonts/inter-v12-latin-200.woff2') format('woff2'), /* Super Modern Browsers */ + url('/assets/fonts/inter-v12-latin-200.woff') format('woff'), /* Modern Browsers */ + url('/assets/fonts/inter-v12-latin-200.ttf') format('truetype'), /* Safari, Android, iOS */ + url('/assets/fonts/inter-v12-latin-200.svg#Inter') format('svg'); /* Legacy iOS */ +} +/* inter-300 - latin */ @font-face { - font-display: swap; + font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */ font-family: 'Inter'; font-style: normal; font-weight: 300; - src: url('/assets/fonts/inter-v12-latin-regular.eot'); /* IE9 Compat Modes */ - src: url('/assets/fonts/inter-v12-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ - url('/assets/fonts/inter-v12-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ - url('/assets/fonts/inter-v12-latin-regular.woff') format('woff'), /* Modern Browsers */ - url('/assets/fonts/inter-v12-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ - url('/assets/fonts/inter-v12-latin-regular.svg#Inter') format('svg'); /* Legacy iOS */ - } + src: url('/assets/fonts/inter-v12-latin-300.eot'); /* IE9 Compat Modes */ + src: url('/assets/fonts/inter-v12-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ + url('/assets/fonts/inter-v12-latin-300.woff2') format('woff2'), /* Super Modern Browsers */ + url('/assets/fonts/inter-v12-latin-300.woff') format('woff'), /* Modern Browsers */ + url('/assets/fonts/inter-v12-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */ + url('/assets/fonts/inter-v12-latin-300.svg#Inter') format('svg'); /* Legacy iOS */ +} +/* inter-regular - latin */ @font-face { - font-display: swap; + font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */ font-family: 'Inter'; font-style: normal; font-weight: 400; src: url('/assets/fonts/inter-v12-latin-regular.eot'); /* IE9 Compat Modes */ src: url('/assets/fonts/inter-v12-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ - url('/assets/fonts/inter-v12-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ - url('/assets/fonts/inter-v12-latin-regular.woff') format('woff'), /* Modern Browsers */ - url('/assets/fonts/inter-v12-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ - url('/assets/fonts/inter-v12-latin-regular.svg#Inter') format('svg'); /* Legacy iOS */ - } + url('/assets/fonts/inter-v12-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ + url('/assets/fonts/inter-v12-latin-regular.woff') format('woff'), /* Modern Browsers */ + url('/assets/fonts/inter-v12-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ + url('/assets/fonts/inter-v12-latin-regular.svg#Inter') format('svg'); /* Legacy iOS */ +} +/* inter-500 - latin */ @font-face { - font-display: swap; + font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */ font-family: 'Inter'; font-style: normal; font-weight: 500; - src: url('/assets/fonts/inter-v12-latin-regular.eot'); /* IE9 Compat Modes */ - src: url('/assets/fonts/inter-v12-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ - url('/assets/fonts/inter-v12-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ - url('/assets/fonts/inter-v12-latin-regular.woff') format('woff'), /* Modern Browsers */ - url('/assets/fonts/inter-v12-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ - url('/assets/fonts/inter-v12-latin-regular.svg#Inter') format('svg'); /* Legacy iOS */ - } + src: url('/assets/fonts/inter-v12-latin-500.eot'); /* IE9 Compat Modes */ + src: url('/assets/fonts/inter-v12-latin-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ + url('/assets/fonts/inter-v12-latin-500.woff2') format('woff2'), /* Super Modern Browsers */ + url('/assets/fonts/inter-v12-latin-500.woff') format('woff'), /* Modern Browsers */ + url('/assets/fonts/inter-v12-latin-500.ttf') format('truetype'), /* Safari, Android, iOS */ + url('/assets/fonts/inter-v12-latin-500.svg#Inter') format('svg'); /* Legacy iOS */ +} +/* inter-600 - latin */ @font-face { - font-display: swap; + font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */ font-family: 'Inter'; font-style: normal; font-weight: 600; - src: url('/assets/fonts/inter-v12-latin-regular.eot'); /* IE9 Compat Modes */ - src: url('/assets/fonts/inter-v12-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ - url('/assets/fonts/inter-v12-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ - url('/assets/fonts/inter-v12-latin-regular.woff') format('woff'), /* Modern Browsers */ - url('/assets/fonts/inter-v12-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ - url('/assets/fonts/inter-v12-latin-regular.svg#Inter') format('svg'); /* Legacy iOS */ - } + src: url('/assets/fonts/inter-v12-latin-600.eot'); /* IE9 Compat Modes */ + src: url('/assets/fonts/inter-v12-latin-600.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ + url('/assets/fonts/inter-v12-latin-600.woff2') format('woff2'), /* Super Modern Browsers */ + url('/assets/fonts/inter-v12-latin-600.woff') format('woff'), /* Modern Browsers */ + url('/assets/fonts/inter-v12-latin-600.ttf') format('truetype'), /* Safari, Android, iOS */ + url('/assets/fonts/inter-v12-latin-600.svg#Inter') format('svg'); /* Legacy iOS */ +} +/* inter-700 - latin */ @font-face { - font-display: swap; + font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */ font-family: 'Inter'; font-style: normal; font-weight: 700; - src: url('/assets/fonts/inter-v12-latin-regular.eot'); /* IE9 Compat Modes */ - src: url('/assets/fonts/inter-v12-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ - url('/assets/fonts/inter-v12-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ - url('/assets/fonts/inter-v12-latin-regular.woff') format('woff'), /* Modern Browsers */ - url('/assets/fonts/inter-v12-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ - url('/assets/fonts/inter-v12-latin-regular.svg#Inter') format('svg'); /* Legacy iOS */ - } + src: url('/assets/fonts/inter-v12-latin-700.eot'); /* IE9 Compat Modes */ + src: url('/assets/fonts/inter-v12-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ + url('/assets/fonts/inter-v12-latin-700.woff2') format('woff2'), /* Super Modern Browsers */ + url('/assets/fonts/inter-v12-latin-700.woff') format('woff'), /* Modern Browsers */ + url('/assets/fonts/inter-v12-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */ + url('/assets/fonts/inter-v12-latin-700.svg#Inter') format('svg'); /* Legacy iOS */ +} +/* inter-800 - latin */ @font-face { - font-display: swap; + font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */ font-family: 'Inter'; font-style: normal; font-weight: 800; - src: url('/assets/fonts/inter-v12-latin-regular.eot'); /* IE9 Compat Modes */ - src: url('/assets/fonts/inter-v12-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ - url('/assets/fonts/inter-v12-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ - url('/assets/fonts/inter-v12-latin-regular.woff') format('woff'), /* Modern Browsers */ - url('/assets/fonts/inter-v12-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ - url('/assets/fonts/inter-v12-latin-regular.svg#Inter') format('svg'); /* Legacy iOS */ - } + src: url('/assets/fonts/inter-v12-latin-800.eot'); /* IE9 Compat Modes */ + src: url('/assets/fonts/inter-v12-latin-800.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ + url('/assets/fonts/inter-v12-latin-800.woff2') format('woff2'), /* Super Modern Browsers */ + url('/assets/fonts/inter-v12-latin-800.woff') format('woff'), /* Modern Browsers */ + url('/assets/fonts/inter-v12-latin-800.ttf') format('truetype'), /* Safari, Android, iOS */ + url('/assets/fonts/inter-v12-latin-800.svg#Inter') format('svg'); /* Legacy iOS */ +} + +/* inter-900 - latin */ +@font-face { + font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */ + font-family: 'Inter'; + font-style: normal; + font-weight: 900; + src: url('/assets/fonts/inter-v12-latin-900.eot'); /* IE9 Compat Modes */ + src: url('/assets/fonts/inter-v12-latin-900.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ + url('/assets/fonts/inter-v12-latin-900.woff2') format('woff2'), /* Super Modern Browsers */ + url('/assets/fonts/inter-v12-latin-900.woff') format('woff'), /* Modern Browsers */ + url('/assets/fonts/inter-v12-latin-900.ttf') format('truetype'), /* Safari, Android, iOS */ + url('/assets/fonts/inter-v12-latin-900.svg#Inter') format('svg'); /* Legacy iOS */ +} diff --git a/assets/fonts/inter-v12-latin-100.eot b/assets/fonts/inter-v12-latin-100.eot new file mode 100644 index 00000000..6529c587 Binary files /dev/null and b/assets/fonts/inter-v12-latin-100.eot differ diff --git a/assets/fonts/inter-v12-latin-100.svg b/assets/fonts/inter-v12-latin-100.svg new file mode 100644 index 00000000..9e6eab34 --- /dev/null +++ b/assets/fonts/inter-v12-latin-100.svg @@ -0,0 +1,350 @@ + + + diff --git a/assets/fonts/inter-v12-latin-100.ttf b/assets/fonts/inter-v12-latin-100.ttf new file mode 100644 index 00000000..1bb18415 Binary files /dev/null and b/assets/fonts/inter-v12-latin-100.ttf differ diff --git a/assets/fonts/inter-v12-latin-100.woff b/assets/fonts/inter-v12-latin-100.woff new file mode 100644 index 00000000..ae5e660b Binary files /dev/null and b/assets/fonts/inter-v12-latin-100.woff differ diff --git a/assets/fonts/inter-v12-latin-100.woff2 b/assets/fonts/inter-v12-latin-100.woff2 new file mode 100644 index 00000000..1ef23573 Binary files /dev/null and b/assets/fonts/inter-v12-latin-100.woff2 differ diff --git a/assets/fonts/inter-v12-latin-200.eot b/assets/fonts/inter-v12-latin-200.eot new file mode 100644 index 00000000..f0559d65 Binary files /dev/null and b/assets/fonts/inter-v12-latin-200.eot differ diff --git a/assets/fonts/inter-v12-latin-200.svg b/assets/fonts/inter-v12-latin-200.svg new file mode 100644 index 00000000..6c9d588d --- /dev/null +++ b/assets/fonts/inter-v12-latin-200.svg @@ -0,0 +1,350 @@ + + + diff --git a/assets/fonts/inter-v12-latin-200.ttf b/assets/fonts/inter-v12-latin-200.ttf new file mode 100644 index 00000000..e4dc75d6 Binary files /dev/null and b/assets/fonts/inter-v12-latin-200.ttf differ diff --git a/assets/fonts/inter-v12-latin-200.woff b/assets/fonts/inter-v12-latin-200.woff new file mode 100644 index 00000000..30ec28ef Binary files /dev/null and b/assets/fonts/inter-v12-latin-200.woff differ diff --git a/assets/fonts/inter-v12-latin-200.woff2 b/assets/fonts/inter-v12-latin-200.woff2 new file mode 100644 index 00000000..ca591ae7 Binary files /dev/null and b/assets/fonts/inter-v12-latin-200.woff2 differ diff --git a/assets/fonts/inter-v12-latin-300.eot b/assets/fonts/inter-v12-latin-300.eot new file mode 100644 index 00000000..0a09bec1 Binary files /dev/null and b/assets/fonts/inter-v12-latin-300.eot differ diff --git a/assets/fonts/inter-v12-latin-300.svg b/assets/fonts/inter-v12-latin-300.svg new file mode 100644 index 00000000..86d802a7 --- /dev/null +++ b/assets/fonts/inter-v12-latin-300.svg @@ -0,0 +1,350 @@ + + + diff --git a/assets/fonts/inter-v12-latin-300.ttf b/assets/fonts/inter-v12-latin-300.ttf new file mode 100644 index 00000000..5be620cf Binary files /dev/null and b/assets/fonts/inter-v12-latin-300.ttf differ diff --git a/assets/fonts/inter-v12-latin-300.woff b/assets/fonts/inter-v12-latin-300.woff new file mode 100644 index 00000000..f3fe81ea Binary files /dev/null and b/assets/fonts/inter-v12-latin-300.woff differ diff --git a/assets/fonts/inter-v12-latin-300.woff2 b/assets/fonts/inter-v12-latin-300.woff2 new file mode 100644 index 00000000..e085aa82 Binary files /dev/null and b/assets/fonts/inter-v12-latin-300.woff2 differ diff --git a/assets/fonts/inter-v12-latin-500.eot b/assets/fonts/inter-v12-latin-500.eot new file mode 100644 index 00000000..da2dac49 Binary files /dev/null and b/assets/fonts/inter-v12-latin-500.eot differ diff --git a/assets/fonts/inter-v12-latin-500.svg b/assets/fonts/inter-v12-latin-500.svg new file mode 100644 index 00000000..77485eb6 --- /dev/null +++ b/assets/fonts/inter-v12-latin-500.svg @@ -0,0 +1,351 @@ + + + diff --git a/assets/fonts/inter-v12-latin-500.ttf b/assets/fonts/inter-v12-latin-500.ttf new file mode 100644 index 00000000..a5e8c6e4 Binary files /dev/null and b/assets/fonts/inter-v12-latin-500.ttf differ diff --git a/assets/fonts/inter-v12-latin-500.woff b/assets/fonts/inter-v12-latin-500.woff new file mode 100644 index 00000000..19c7bf8f Binary files /dev/null and b/assets/fonts/inter-v12-latin-500.woff differ diff --git a/assets/fonts/inter-v12-latin-500.woff2 b/assets/fonts/inter-v12-latin-500.woff2 new file mode 100644 index 00000000..6fc94ad0 Binary files /dev/null and b/assets/fonts/inter-v12-latin-500.woff2 differ diff --git a/assets/fonts/inter-v12-latin-600.eot b/assets/fonts/inter-v12-latin-600.eot new file mode 100644 index 00000000..354be5eb Binary files /dev/null and b/assets/fonts/inter-v12-latin-600.eot differ diff --git a/assets/fonts/inter-v12-latin-600.svg b/assets/fonts/inter-v12-latin-600.svg new file mode 100644 index 00000000..e4095595 --- /dev/null +++ b/assets/fonts/inter-v12-latin-600.svg @@ -0,0 +1,351 @@ + + + diff --git a/assets/fonts/inter-v12-latin-600.ttf b/assets/fonts/inter-v12-latin-600.ttf new file mode 100644 index 00000000..8a800446 Binary files /dev/null and b/assets/fonts/inter-v12-latin-600.ttf differ diff --git a/assets/fonts/inter-v12-latin-600.woff b/assets/fonts/inter-v12-latin-600.woff new file mode 100644 index 00000000..b606a875 Binary files /dev/null and b/assets/fonts/inter-v12-latin-600.woff differ diff --git a/assets/fonts/inter-v12-latin-600.woff2 b/assets/fonts/inter-v12-latin-600.woff2 new file mode 100644 index 00000000..bc76d107 Binary files /dev/null and b/assets/fonts/inter-v12-latin-600.woff2 differ diff --git a/assets/fonts/inter-v12-latin-700.eot b/assets/fonts/inter-v12-latin-700.eot new file mode 100644 index 00000000..53ce7859 Binary files /dev/null and b/assets/fonts/inter-v12-latin-700.eot differ diff --git a/assets/fonts/inter-v12-latin-700.svg b/assets/fonts/inter-v12-latin-700.svg new file mode 100644 index 00000000..18466061 --- /dev/null +++ b/assets/fonts/inter-v12-latin-700.svg @@ -0,0 +1,352 @@ + + + diff --git a/assets/fonts/inter-v12-latin-700.ttf b/assets/fonts/inter-v12-latin-700.ttf new file mode 100644 index 00000000..d39cfb0a Binary files /dev/null and b/assets/fonts/inter-v12-latin-700.ttf differ diff --git a/assets/fonts/inter-v12-latin-700.woff b/assets/fonts/inter-v12-latin-700.woff new file mode 100644 index 00000000..097e23e3 Binary files /dev/null and b/assets/fonts/inter-v12-latin-700.woff differ diff --git a/assets/fonts/inter-v12-latin-700.woff2 b/assets/fonts/inter-v12-latin-700.woff2 new file mode 100644 index 00000000..8fcc4321 Binary files /dev/null and b/assets/fonts/inter-v12-latin-700.woff2 differ diff --git a/assets/fonts/inter-v12-latin-800.eot b/assets/fonts/inter-v12-latin-800.eot new file mode 100644 index 00000000..f0e48085 Binary files /dev/null and b/assets/fonts/inter-v12-latin-800.eot differ diff --git a/assets/fonts/inter-v12-latin-800.svg b/assets/fonts/inter-v12-latin-800.svg new file mode 100644 index 00000000..c2c6d5d3 --- /dev/null +++ b/assets/fonts/inter-v12-latin-800.svg @@ -0,0 +1,350 @@ + + + diff --git a/assets/fonts/inter-v12-latin-800.ttf b/assets/fonts/inter-v12-latin-800.ttf new file mode 100644 index 00000000..aa8a4999 Binary files /dev/null and b/assets/fonts/inter-v12-latin-800.ttf differ diff --git a/assets/fonts/inter-v12-latin-800.woff b/assets/fonts/inter-v12-latin-800.woff new file mode 100644 index 00000000..83d445c6 Binary files /dev/null and b/assets/fonts/inter-v12-latin-800.woff differ diff --git a/assets/fonts/inter-v12-latin-800.woff2 b/assets/fonts/inter-v12-latin-800.woff2 new file mode 100644 index 00000000..27db0546 Binary files /dev/null and b/assets/fonts/inter-v12-latin-800.woff2 differ diff --git a/assets/fonts/inter-v12-latin-900.eot b/assets/fonts/inter-v12-latin-900.eot new file mode 100644 index 00000000..f50e4c2a Binary files /dev/null and b/assets/fonts/inter-v12-latin-900.eot differ diff --git a/assets/fonts/inter-v12-latin-900.svg b/assets/fonts/inter-v12-latin-900.svg new file mode 100644 index 00000000..a04d6e07 --- /dev/null +++ b/assets/fonts/inter-v12-latin-900.svg @@ -0,0 +1,349 @@ + + + diff --git a/assets/fonts/inter-v12-latin-900.ttf b/assets/fonts/inter-v12-latin-900.ttf new file mode 100644 index 00000000..c885c815 Binary files /dev/null and b/assets/fonts/inter-v12-latin-900.ttf differ diff --git a/assets/fonts/inter-v12-latin-900.woff b/assets/fonts/inter-v12-latin-900.woff new file mode 100644 index 00000000..aa007e6d Binary files /dev/null and b/assets/fonts/inter-v12-latin-900.woff differ diff --git a/assets/fonts/inter-v12-latin-900.woff2 b/assets/fonts/inter-v12-latin-900.woff2 new file mode 100644 index 00000000..b1c208a1 Binary files /dev/null and b/assets/fonts/inter-v12-latin-900.woff2 differ diff --git a/default.hbs b/default.hbs index c9de765d..8749a021 100644 --- a/default.hbs +++ b/default.hbs @@ -10,10 +10,9 @@ {{ghost_head}} - {{!-- Outputs important meta data and settings, should always be in
--}} - +