{"id":15288533,"url":"https://github.com/ibug/aurora-theme","last_synced_at":"2026-05-20T07:41:00.309Z","repository":{"id":62553729,"uuid":"132348796","full_name":"iBug/aurora-theme","owner":"iBug","description":"Aurora is a Jekyll theme for GitHub Pages","archived":false,"fork":false,"pushed_at":"2019-10-05T07:42:48.000Z","size":87,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-03-05T06:59:54.852Z","etag":null,"topics":["github-page","jekyll","jekyll-theme","theme"],"latest_commit_sha":null,"homepage":"https://ibug.github.io/aurora-theme","language":"CSS","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"cc0-1.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/iBug.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"docs/CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"docs/CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-05-06T14:57:42.000Z","updated_at":"2019-10-05T07:42:50.000Z","dependencies_parsed_at":"2022-11-03T04:45:27.897Z","dependency_job_id":null,"html_url":"https://github.com/iBug/aurora-theme","commit_stats":null,"previous_names":[],"tags_count":2,"template":true,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iBug%2Faurora-theme","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iBug%2Faurora-theme/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iBug%2Faurora-theme/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iBug%2Faurora-theme/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/iBug","download_url":"https://codeload.github.com/iBug/aurora-theme/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245212305,"owners_count":20578443,"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":["github-page","jekyll","jekyll-theme","theme"],"created_at":"2024-09-30T15:49:54.374Z","updated_at":"2026-05-20T07:41:00.275Z","avatar_url":"https://github.com/iBug.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Aurora theme\n\n[![Build Status](https://travis-ci.org/iBug/aurora-theme.svg?branch=master)](https://travis-ci.org/iBug/aurora-theme) [![Gem Version](https://badge.fury.io/rb/aurora-theme.svg)](https://badge.fury.io/rb/aurora-theme)\n\n*Aurora is a Jekyll theme for GitHub Pages. You can [preview the theme to see what it looks like](https://ibug.github.io/aurora-theme), or even [use it today](#usage).*\n\n![Thumbnail of Aurora](thumbnail.jpg)\n\n## Usage\n\nTo use the Aurora theme:\n\n1. Install the gem:\n\n    ```\n    gem install aurora-theme\n    ```\n\n    Add the following to your site's `_config.yml`:\n\n    ```yml\n    theme: aurora-theme\n    ```\n\n    If you're building your site with GitHub Pages, replace `theme` with this:\n\n    ```yml\n    remote_theme: iBug/aurora-theme\n    ```\n\n2. Optionally, if you'd like to preview your site on your computer, add the following to your site's `Gemfile`:\n\n    ```ruby\n    gem \"aurora-theme\", group: :jekyll_plugins\n    ```\n\n## Customizing\n\n### Configuration variables\n\nAurora will respect the following variables, if set in your site's `_config.yml`:\n\n```yml\ntitle: [The title of your site]\ndescription: [A short description of your site's purpose]\n```\n\nAdditionally, you may choose to set the following optional variables:\n\n```yml\nshow_downloads: [\"true\" or \"false\" to indicate whether to provide a download URL]\ngoogle_analytics: [Your Google Analytics tracking ID]\n```\n\nIf these variables are set in individual pages' [front matter](https://jekyllrb.com/docs/frontmatter/), Aurora will respect them, too.\n\n```yml\ntitle: [The title of the page]\ntagline: [The tagline of the page]\n```\n\n### Stylesheet\n\nIf you'd like to add your own custom styles:\n\n1. Create a file called `/assets/css/style.scss` in your site\n2. Add the following content to the top of the file, exactly as shown:\n    ```scss\n    ---\n    ---\n\n    @import \"aurora\";\n    ```\n3. Add any custom CSS (or Sass, including imports) you'd like immediately after the `@import` line\n\n*Note: If you'd like to change the theme's Sass variables, you must set new values before the `@import` line in your stylesheet.*\n\n### Background image\n\nBy default, the background image is hosted on my GitHub Pages.\n\n```\nhttps://ibug.github.io/image/aurora.jpg\n```\n\nIf you want to replace it with another image, override the Sass variable that contains the image url in `/assets/css/style.scss`:\n\n```scss\n---\n---\n\n$bg-image-url: 'https://example.com/image.jpg'\n@import 'aurora';\n```\n\n### Layouts\n\nIf you'd like to change the theme's HTML layout:\n\n1. [Copy the original template](https://github.com/iBug/aurora-theme/blob/master/_layouts/default.html) from the theme's repository\u003cbr /\u003e(*Pro-tip: click \"raw\" to make copying easier*)\n2. Create a file called `/_layouts/default.html` in your site\n3. Paste the default layout content copied in the first step\n4. Customize the layout as you'd like\n\n### Overriding GitHub-generated URLs\n\nTemplates often rely on URLs supplied by GitHub such as links to your repository or links to download your project. If you'd like to override one or more default URLs:\n\n1. Look at [the template source](https://github.com/iBug/aurora-theme/blob/master/_layouts/default.html) to determine the name of the variable. It will be in the form of `{{ site.download.zip_url }}`.\n\n2. Specify the URL that you'd like the template to use in your site's `_config.yml`. For example, if the variable was `site.download.zip_url`, you'd add the following:\n    ```yml\n    download:\n      zip_url: http://example.com/download.zip\n      another_url: another value\n    ```\n3. When your site is built, Jekyll will use the URL you specified, rather than the default one provided by GitHub.\n\n*Note: You must remove the `site.` prefix, and each variable name (after the `download.`) should be indent with two space below `download:`.*\n\nFor more information, see [the Jekyll variables documentation](https://jekyllrb.com/docs/variables/).\n\n## Optional features\n\nAurora comes with some built-in features that you can choose to enable to make your site look better.\n\nTo enable an optional feature, simply specify this in your site's `_config.yml`:\n\n```yml\nfeatures:\n  some_feature: true\n```\n\nSome features are enabled on a per-page basis, so you will need to specify them in the [front matter](https://jekyllrb.com/docs/frontmatter):\n\n```yml\n---\nsome_feature: true\n---\n```\n\nA list of optional features can be found at the [features page](https://ibug.github.io/aurora-theme/features). You can also preview all the features there.\n\n## Roadmap\n\nSee the [open issues](https://github.com/iBug/aurora-theme/issues) for a list of proposed features (and known issues).\n\n## Project philosophy\n\nThe Aurora theme is intended to make it quick and easy for GitHub Pages users to create their first (or 100th) website. The theme should meet the vast majority of users' needs out of the box, erring on the side of simplicity rather than flexibility, and provide users the opportunity to opt-in to additional complexity if they have specific needs or wish to further customize their experience (such as adding custom CSS or modifying the default layout). It should also look great, but that goes without saying.\n\n## Contributing\n\nInterested in contributing to Aurora? We'd love your help. Aurora is an open source project, built one contribution at a time by users like you. See [the CONTRIBUTING file](docs/CONTRIBUTING.md) for instructions on how to contribute.\n\n### Previewing the theme locally\n\nIf you'd like to preview the theme locally (for example, in the process of proposing a change):\n\n1. Clone down the theme's repository (`git clone https://github.com/iBug/aurora-theme`)\n2. `cd` into the theme's directory\n3. Run `script/bootstrap` to install the necessary dependencies\n4. Run `bundle exec jekyll serve` to start the preview server\n5. Visit [`localhost:4000`](http://localhost:4000) in your browser to preview the theme\n\n### Running tests\n\nThe theme contains a minimal test suite, to ensure a site with the theme would build successfully. To run the tests, simply run `script/cibuild`. You'll need to run `script/bootstrap` one before the test script will work.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fibug%2Faurora-theme","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fibug%2Faurora-theme","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fibug%2Faurora-theme/lists"}