-
-
Notifications
You must be signed in to change notification settings - Fork 341
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
48 changed files
with
490 additions
and
207 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
# Changelog | ||
|
||
All notable changes to Congo will be documented in this file. | ||
|
||
Things that need attention when upgrading from a prior version are marked ⚠️. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
--- | ||
|
||
## [1.1.0] - 2020-08-18 | ||
|
||
### Added | ||
|
||
- Breadcrumbs | ||
- i18n support | ||
- Recent articles partial | ||
- CSS transitions | ||
- Hugo module support | ||
- JSON-LD structured metadata | ||
|
||
### Changed | ||
|
||
- ⚠️ Renamed parameter: `homepage.showList` -> `homepage.showRecent` | ||
- ⚠️ Renamed parameter: `homepage.listSections` -> `mainSections` | ||
- ⚠️ Consolidated author configuration parameters into `config.toml` | ||
- General style tweaks to enhance design consistency | ||
|
||
### Fixed | ||
|
||
- URLs being incorrect in some cases when the site is deployed in a subfolder | ||
|
||
## [1.0.0] - 2020-08-16 | ||
|
||
### Initial release 🎉 | ||
|
||
- Built with Tailwind CSS JIT for minified stylesheets without any excess code | ||
- Fully responsive layout | ||
- Dark mode (auto-switching based upon browser) | ||
- Highly customisable configuration | ||
- Multiple homepage layouts | ||
- Flexible with any content types, taxonomies and menus | ||
- Ability to link to posts on third-party websites | ||
- Diagrams and visualisations using Mermaid JS | ||
- SVG icons from FontAwesome 5 | ||
- Heading anchors, Buttons, Badges and more | ||
- HTML and Emoji support in articles | ||
- SEO friendly with links for sharing to social media | ||
- RSS feeds | ||
- Fathom Analytics and Google Analytics support | ||
- Favicons support | ||
- Comments support | ||
- Advanced customisation using simple Tailwind colour definitions and styles | ||
- Fully documented | ||
|
||
[unreleased]: https://github.com/jpanther/Congo/compare/v1.1.0...HEAD | ||
[1.1.0]: https://github.com/jpanther/Congo/compare/v1.0.0...v1.1.0 | ||
[1.0.0]: https://github.com/jpanther/Congo/releases/tag/v1.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,45 @@ | ||
# -- Site Configuration -- | ||
# Refer to the theme docs for more details about each of these parameters. | ||
# https://jpanther.github.io/Congo/docs/getting-started/ | ||
|
||
theme = "congo" | ||
|
||
# Speficiy the base URL for the website. | ||
# baseURL = "https://your_domain.com/" | ||
|
||
# The language code of the language that the website is written in. | ||
# This can be a base language (ie. "en") or a specific variant (ie. "en-AU"). | ||
languageCode = "en" | ||
defaultContentLanguage = "en" | ||
|
||
# The website title. This will be displayed in the site header. | ||
title = "Congo" | ||
|
||
# A default copyright message is generated automatically. | ||
# Uncomment the line below to provide a custom copyright Markdown string. | ||
# copyright = "Copy, _right?_ :thinking_face:" | ||
|
||
# To automatically convert strings such as :bang: to emoji, set this to true. | ||
enableEmoji = true | ||
|
||
# Congo will generate a robots file that allows search engines to index | ||
# the entire site. If you don't want a robots file, set this to false. | ||
enableRobotsTXT = true | ||
|
||
[author] | ||
# name = "Your name here" | ||
# image = "img/author.jpg" | ||
# links = [ | ||
# { email = "mailto:hello@your_domain.com" }, | ||
# { link = "https://link-to-some-website.com/" }, | ||
# { codepen = "https://codepen.io/username" }, | ||
# { dev = "https://dev.to/username" }, | ||
# { discord = "https://discord.gg/invitecode" }, | ||
# { dribbble = "https://dribbble.com/username" }, | ||
# { facebook = "https://facebook.com/username" }, | ||
# { github = "https://github.com/username" }, | ||
# { gitlab = "https://gitlab.com/username" }, | ||
# { instagram = "https://instagram.com/username" }, | ||
# { keybase = "https://keybase.io/username" }, | ||
# { lastfm = "https://lastfm.com/user/username" }, | ||
# { linkedin = "https://linkedin.com/in/username" }, | ||
# { mastodon = "https://mastodon.instance/@username" }, | ||
# { medium = "https://medium.com/username" }, | ||
# { reddit = "https://reddit.com/user/username" }, | ||
# { slack = "https://workspace.url/team/userid" }, | ||
# { snapchat = "https://snapchat.com/add/username" }, | ||
# { soundcloud = "https://soundcloud.com/username" }, | ||
# { steam = "https://steamcommunity.com/profiles/userid" }, | ||
# { tiktok = "https://tiktok.com/@username" }, | ||
# { twitch = "https://twitch.tv/username" }, | ||
# { twitter = "https://twitter.com/username" }, | ||
# { youtube = "https://youtube.com/username" }, | ||
# ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,27 @@ | ||
{ | ||
"email": { | ||
"icon": "email", | ||
"title": "Send via email", | ||
"title": "sharing.email", | ||
"url": "mailto:?body=%s&subject=%s" | ||
}, | ||
"facebook": { | ||
"icon": "facebook", | ||
"title": "Share on Facebook", | ||
"title": "sharing.facebook", | ||
"url": "https://www.facebook.com/sharer/sharer.php?u=%s"e=%s" | ||
}, | ||
"linkedin": { | ||
"icon": "linkedin", | ||
"title": "Share on LinkedIn", | ||
"title": "sharing.linkedin", | ||
"url": "https://www.linkedin.com/shareArticle?mini=true&url=%s&title=%s" | ||
}, | ||
"reddit": { | ||
"icon": "reddit", | ||
"title": "Submit to Reddit", | ||
"title": "sharing.reddit", | ||
"url": "https://reddit.com/submit/?url=%s&resubmit=true&title=%s" | ||
}, | ||
"twitter": { | ||
"icon": "twitter", | ||
"title": "Tweet on Twitter", | ||
"title": "sharing.twitter", | ||
"url": "https://twitter.com/intent/tweet/?url=%s&text=%s" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.