{"id":13929467,"url":"https://github.com/jbub/ghostwriter","last_synced_at":"2025-10-07T02:31:57.114Z","repository":{"id":31047662,"uuid":"34606336","full_name":"jbub/ghostwriter","owner":"jbub","description":"A port of ghostwriter theme to Hugo.","archived":false,"fork":true,"pushed_at":"2024-09-02T05:18:26.000Z","size":1634,"stargazers_count":177,"open_issues_count":12,"forks_count":154,"subscribers_count":8,"default_branch":"master","last_synced_at":"2024-11-15T12:29:14.642Z","etag":null,"topics":["hugo","hugo-theme"],"latest_commit_sha":null,"homepage":"","language":"SCSS","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"roryg/ghostwriter","license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jbub.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2015-04-26T09:57:24.000Z","updated_at":"2024-09-02T05:18:23.000Z","dependencies_parsed_at":"2023-02-18T15:45:32.778Z","dependency_job_id":null,"html_url":"https://github.com/jbub/ghostwriter","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jbub%2Fghostwriter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jbub%2Fghostwriter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jbub%2Fghostwriter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jbub%2Fghostwriter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jbub","download_url":"https://codeload.github.com/jbub/ghostwriter/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":235581533,"owners_count":19013089,"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":["hugo","hugo-theme"],"created_at":"2024-08-07T18:02:21.809Z","updated_at":"2025-10-07T02:31:57.108Z","avatar_url":"https://github.com/jbub.png","language":"SCSS","funding_links":[],"categories":["others","SCSS"],"sub_categories":[],"readme":"# Ghostwriter\n\nEnhanced port of the Ghost \"[ghostwriter](https://github.com/roryg/ghostwriter)\" theme to the [Hugo](https://gohugo.io) site generator.\n\n## Installation\n\nInside the folder of your Hugo site run:\n\n```bash\n$ mkdir themes\n$ cd themes\n$ git clone https://github.com/jbub/ghostwriter\n```\n\nFor more information read the official [setup guide](//gohugo.io/overview/installing/) of Hugo.\n\n## Development\n\nAfter installing the theme you need to install javascript dependencies. You can use \n`npm` to install them from `package.json`. We are using `webpack` to build and package \nstyles. In order to develop with realtime reloading in the browser you can use this powerful combo:\n\n```bash\nhugo server\nnpm run watch\n```\n\nTo update theme styles edit the `styles/style.scss` file. You can then either use the `watch` command\nor run `build` to compile the styles:\n\n```bash\nnpm run build\n```\n\n## Example config.yml\n\nTo customize your theme you can use following params:\n\n```yaml\nbaseurl: \"https://example.com/\"\ntitle: mytitle\ntheme: ghostwriter\nlanguageCode: en-us\ncopyright: My Name\ngoogleAnalytics: XXX\npygmentsUseClasses: true\npygmentsCodefences: true\n\nmarkup:\n  highlight:\n    codeFences: true\n    guessSyntax: false\n    hl_Lines: \"\"\n    lineNoStart: 1\n    lineNos: false\n    lineNumbersInTable: true\n    noClasses: true\n    tabWidth: 2\n\nprivacy:\n  disqus:\n    disable: true\n  googleAnalytics:\n    anonymizeIP: true\n    respectDoNotTrack: true\n    useSessionStorage: false\n\nauthor:\n  name: My Name\n  profile: \"\"\n\ntaxonomies:\n  tag: tags\n\nparams:\n  mainSections:\n    - post\n  intro: true\n  headline: My headline\n  description: My description\n  github: \"https://github.com/XXX\"\n  gitlab: \"https://gitlab.com/XXX\"\n  linkedin: \"https://linkedin.com/in/XXX/\"\n  twitter: \"https://twitter.com/XXX\"\n  stackoverflow: \"https://stackoverflow.com/users/XXX/YYY\"\n  facebook: \"https://www.facebook.com/username\"\n  email: xxx@example.com\n  opengraph: true\n  shareTwitter: true\n  rss: true\n  shareFacebook: true\n  shareLinkedIn: false\n  dateFormat: \"Mon, Jan 2, 2006\"\n  exponeaJsUrl: \"\"\n  exponeaTarget: \"\"\n  exponeaToken: \"\"\n  exponeaTrackVisits: false\n  readingTime: true\n  readingTimeText: \"Estimated reading time:\"\n  fathomUrl: \"\"\n  fathomSiteId: \"\"\n  plausibleAnalytics:\n    domain: \"\"\n    # Default value is plausible.io, overwrite this if you are self-hosting or using a custom domain\n    serverURL: \"\"\n\npermalinks:\n  post: \"/:year/:month/:day/:contentbasename/\"\n\nmenu:\n  main:\n    - name: Blog\n      url: /\n      weight: 1\n    - name: Projects\n      url: /project/\n      weight: 2\n    - name: Contact\n      url: /page/contact/\n      weight: 3\n    - name: About\n      url: /page/about/\n      weight: 4\n```\n\nYou can also inject arbitrary HTML into `\u003chead\u003e` simply by overriding the `extra-in-head.html`\npartial, which is meant for that purpose.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjbub%2Fghostwriter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjbub%2Fghostwriter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjbub%2Fghostwriter/lists"}