{"id":13688125,"url":"https://github.com/novanet/Ghost-theme","last_synced_at":"2025-05-01T16:30:25.323Z","repository":{"id":12933613,"uuid":"15611380","full_name":"novanet/Ghost-theme","owner":"novanet","description":"Novanet theme for Ghost","archived":true,"fork":false,"pushed_at":"2022-12-05T05:41:10.000Z","size":1890,"stargazers_count":6,"open_issues_count":18,"forks_count":1,"subscribers_count":31,"default_branch":"master","last_synced_at":"2024-11-12T11:40:25.009Z","etag":null,"topics":["css","ghost-theme","html5"],"latest_commit_sha":null,"homepage":null,"language":"CSS","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/novanet.png","metadata":{"files":{"readme":"README.md","changelog":"changelog.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-01-03T14:34:29.000Z","updated_at":"2024-08-28T23:18:17.000Z","dependencies_parsed_at":"2023-01-11T20:19:32.156Z","dependency_job_id":null,"html_url":"https://github.com/novanet/Ghost-theme","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/novanet%2FGhost-theme","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/novanet%2FGhost-theme/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/novanet%2FGhost-theme/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/novanet%2FGhost-theme/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/novanet","download_url":"https://codeload.github.com/novanet/Ghost-theme/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251906713,"owners_count":21663150,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["css","ghost-theme","html5"],"created_at":"2024-08-02T15:01:07.223Z","updated_at":"2025-05-01T16:30:25.317Z","avatar_url":"https://github.com/novanet.png","language":"CSS","funding_links":[],"categories":["css"],"sub_categories":[],"readme":"# Novanet Ghost Theme\n\nCustom Ghost theme for [blog.novanet.no]()\n\n## How to run the Novanet Ghost theme locally\n\nRequires [node js and npm](https://nodejs.org/en/download/)\n\n### 1. Install Ghost\n\n- Install Ghost-CLL   \n  `npm i -g ghost-cli@latest`\n- Create a local folder, `cd` into it and create a ghost instance   \n  `ghost install local`\n- Blog with standard theme should run at  \n   http://localhost:2368/\n- Create an account at http://localhost:2368/ghost/ and complete the first-time setup\n\n### 2. Apply the Novanet theme and content\n\n- Export current live content from  \n  https://novanet-blog.ghost.io/ghost/#/settings/labs\n- Import exported content to local blog at  \n  http://localhost:2368/ghost/#/settings/labs\n  (some images may have to be uploaded manually to be displayed correctly)\n- Import the custom theme by\n  - Clone the theme from git  \n  `git clone https://github.com/novanet/Ghost-theme.git`  \n  - Zip it\n  - Upload by using the \"Upload a theme\" functionallity at   \n  http://localhost:2368/ghost/#/settings/design\n\n## Upload changes to theme in production\n\n- Zip the content of the local theme\n- Upload and activate by using the \"Upload a theme\" functionallity at   \n  https://novanet-blog.ghost.io/ghost/#/settings/design\n\n\n## Links\n\n[Blog editor](https://novanet-blog.ghost.io/ghost/)\n\n\n\n\n# Casper: Default theme\n\nThe default theme for [Ghost](http://github.com/tryghost/ghost/). This is the latest development version of Casper! If you're just looking to download the latest release, head over to the [releases](https://github.com/TryGhost/Casper/releases) page.\n\n\u0026nbsp;\n\n![screenshot-desktop](https://user-images.githubusercontent.com/353959/66987533-40eae100-f0c1-11e9-822e-cbaf38fb8e3f.png)\n\n\u0026nbsp;\n\n# First time using a Ghost theme?\n\nGhost uses a simple templating language called [Handlebars](http://handlebarsjs.com/) for its themes.\n\nThis theme has lots of code comments to help explain what's going on just by reading the code. Once you feel comfortable with how everything works, we also have full [theme API documentation](https://ghost.org/docs/api/handlebars-themes/) which explains every possible Handlebars helper and template.\n\n**The main files are:**\n\n- `default.hbs` - The parent template file, which includes your global header/footer\n- `index.hbs` - The main template to generate a list of posts, usually the home page\n- `post.hbs` - The template used to render individual posts\n- `page.hbs` - Used for individual pages\n- `tag.hbs` - Used for tag archives, eg. \"all posts tagged with `news`\"\n- `author.hbs` - Used for author archives, eg. \"all posts written by Jamie\"\n\nOne neat trick is that you can also create custom one-off templates by adding the slug of a page to a template file. For example:\n\n- `page-about.hbs` - Custom template for an `/about/` page\n- `tag-news.hbs` - Custom template for `/tag/news/` archive\n- `author-ali.hbs` - Custom template for `/author/ali/` archive\n\n\n# Development\n\nCasper 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:\n\n```bash\n# install dependencies\nyarn install\n\n# run development server\nyarn dev\n```\n\nNow you can edit `/assets/css/` files, which will be compiled to `/assets/built/` automatically.\n\nThe `zip` Gulp task packages the theme files into `dist/\u003ctheme-name\u003e.zip`, which you can then upload to your site.\n\n```bash\n# create .zip file\nyarn zip\n```\n\n# PostCSS Features Used\n\n- 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.\n- Variables - Simple pure CSS variables\n- [Color Function](https://github.com/postcss/postcss-color-function)\n\n\n# SVG Icons\n\nCasper uses inline SVG icons, included via Handlebars partials. You can find all icons inside `/partials/icons`. To use an icon just include the name of the relevant file, eg. To include the SVG icon in `/partials/icons/rss.hbs` - use `{{\u003e \"icons/rss\"}}`.\n\nYou can add your own SVG icons in the same manner.\n\n\n# Copyright \u0026 License\n\nCopyright (c) 2013-2020 Ghost Foundation - Released under the [MIT license](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnovanet%2FGhost-theme","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnovanet%2FGhost-theme","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnovanet%2FGhost-theme/lists"}