Skip to content

Commit

Permalink
Merge first distinctive iteration
Browse files Browse the repository at this point in the history
All the changes have been properly tested (both on a local development environment and on a production server) and can be considered as suitable for use.
  • Loading branch information
gizmecano authored Aug 9, 2021
2 parents 0e84c5a + cf0e38e commit e22bd42
Show file tree
Hide file tree
Showing 22 changed files with 3,575 additions and 692 deletions.
3 changes: 2 additions & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,5 @@
.gitignore export-ignore

# Define folders that are not added to archive files
.grav/ export-ignore
.grav/ export-ignore
.vscode export-ignore
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# OS files
[Dd]esktop.ini

# Development environment
*.*-workspace

# Development data
.grav/

# Binary asset files
assets/fontawesome/
assets/inter/
assets/libertinus/
7 changes: 7 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"recommendations": [
"editorconfig.editorconfig",
"mblode.twig-language-2",
"redhat.vscode-yaml"
]
}
17 changes: 17 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"editor.minimap.enabled": false,
"editor.renderWhitespace": "all",
"editor.rulers": [
80
],
"editor.wordWrap": "wordWrapColumn",
"editor.wordWrapColumn": 80,
"[markdown]": {
"editor.wordWrap": "wordWrapColumn",
"editor.wordWrapColumn": 80,
},
"files.exclude": {
"**/desktop.ini": true
},
"files.trimTrailingWhitespace": false
}
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
# v2.0.0-alpha
## 08/09/2021

1. [](#new)
* Embed fonts previously delivered remotely
* Embed assets previously delivered remotely
* Rearrange color palette
2. [](#improved)
* Adjust documentation during building process
* Amend main license
* Check usage of remaining styles
* Check scripts usage
* Redesign main stylesheet

# v1.7.0-alpha
## 07/01/2020

Expand Down
3 changes: 2 additions & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
The MIT License (MIT)

Copyright (c) 2014 Grav
Copyright (c) 2014-2020 Grav
Copyright (c) 2020-2021 P. Mergey

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

## Background

The _Hereditor_ theme for Grav is a fork of the [_Mediator_ theme for Grav](https://github.com/getgrav/grav-theme-mediator) developed by [Grav Team and contributors](https://github.com/getgrav/grav-theme-mediator/graphs/contributors), which was a direct port of the [_Mediator_ Theme for Jekyll](https://github.com/dirkfabisch/mediator) designed by [Dirk Fabisch](http://blog.base68.com/about/) which in turn was inspired by the [_Readium 2.0 Theme_ for Ghost](http://www.svenread.com/readium-ghost-theme/).
The _Hereditor_ theme for Grav is a fork of the [_Mediator_ theme](https://github.com/getgrav/grav-theme-mediator) for [Grav](https://getgrav.org/) developed by [Grav Team and contributors](https://github.com/getgrav/grav-theme-mediator/graphs/contributors), which was a port of the [_Mediator_ theme](https://github.com/dirkfabisch/mediator) for [Jekyll](https://jekyllrb.com/) designed by [Dirk Fabisch](https://twitter.com/dirkfabisch), which in turn was inspired by the [_Readium_ theme](https://github.com/starburst1977/readium) for [Ghost](https://ghost.org/) elaborated by by [Sven Read](https://twitter.com/starburst1977).

--------------------------------------------------------------------------------

## Installation

Installing the _Hereditor_ theme can be done in one of two ways. Using the GPM (Grav Package Manager) installation method enables to quickly and easily install the theme with a simple terminal command, while the manual method enables to do so via a `zip` file.
<!--Installing the _Hereditor_ theme can be done in one of two ways. Using the GPM (Grav Package Manager) installation method enables to quickly and easily install the theme with a simple terminal command, while the manual method enables to do so via a `zip` file.
### GPM Installation
Expand All @@ -18,36 +18,36 @@ The simplest way to install the theme is via the [Grav Package Manager (GPM)](ht
$ bin/gpm install hereditor
```
This will install the _Hereditor_ theme into your `/user/themes` directory within Grav. Its files can be found under `/your/site/grav/user/themes/hereditor`.
This will install the _Hereditor_ theme into your `/user/themes` directory within Grav. Its files can be found under `/your/site/grav/user/themes/hereditor`.-->

### Manual Installation

To install the theme, just download the `zip` version of this repository and unzip it under `/your/site/grav/user/themes`. Then, rename the folder to `hereditor`. These files can be found either on [GitHub](https://github.com/gizmecano/grav-theme-hereditor/) or via [GetGrav.org](http://getgrav.org/downloads/themes).
To install the theme, just download the `zip` version of this repository and unzip it under `/your/site/grav/user/themes`. Then, rename the folder to `hereditor`. These files can be found <!--either--> on [GitHub](https://github.com/gizmecano/grav-theme-hereditor/)<!-- or via [GetGrav.org](http://getgrav.org/downloads/themes)-->.

All the _Hereditor_ theme files should be into the folder `/your/site/grav/user/themes/hereditor`.

--------------------------------------------------------------------------------

## Updating

As development for the _Hereditor_ theme continues, new versions may become available that add additional features and functionality, improve compatibility with newer Grav releases, and generally provide a better user experience. Updating _Hereditor_ is easy, and can be done through Grav's GPM system, as well as manually.
As development for the _Hereditor_ theme continues, new versions may become available that add additional features and functionality, improve compatibility with newer Grav releases, and generally provide a better user experience. <!--Updating _Hereditor_ is easy, and can be done through Grav's GPM system, as well as manually.-->

### GPM Update
<!--### GPM Update
The simplest way to update this theme is via the [Grav Package Manager (GPM)](http://learn.getgrav.org/advanced/grav-gpm). Navigate to the root directory of the Grav install using the system's Terminal (also called _command line_) and type the following:
```bash
$ bin/gpm update hereditor
```
This command will check the Grav install to see if the _Hereditor_ theme is due for an update. If a newer release is found, it will be asked whether or not proceed to update. To continue, type `y` and hit enter. The theme will automatically update and clear Grav's cache.
This command will check the Grav install to see if the _Hereditor_ theme is due for an update. If a newer release is found, it will be asked whether or not proceed to update. To continue, type `y` and hit enter. The theme will automatically update and clear Grav's cache.-->

### Manual Update

Manually updating _Hereditor_ is pretty simple:

- Delete the `your/site/user/themes/hereditor` directory
- Download the new version of the _Hereditor_ theme from either [GitHub](https://github.com/gizmecano/grav-theme-hereditor/) or [GetGrav.org](https://getgrav.org/downloads/themes)
- Download the new version of the _Hereditor_ theme from <!--either--> [GitHub](https://github.com/gizmecano/grav-theme-hereditor/)<!-- or [GetGrav.org](https://getgrav.org/downloads/themes)-->
- Unzip the `zip` file in `your/site/user/themes` and rename the resulting folder to `hereditor`
- Clear the Grav cache using admin panel or following command:

Expand Down
Loading

0 comments on commit e22bd42

Please sign in to comment.