mirror of
https://github.com/meineerde/holgerjust.de.git
synced 2025-10-17 17:01:01 +00:00
Full acknowledgement and statement of licenses
This commit is contained in:
parent
2fcbdba944
commit
2345868b79
26
LICENSE.txt
Normal file
26
LICENSE.txt
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
Copyright (c) 2015 Holger Just
|
||||||
|
|
||||||
|
This repository contains content licensed under various licenses depending on
|
||||||
|
the type and location of the content. Please see source.impressum.md.erb for
|
||||||
|
details.
|
||||||
|
|
||||||
|
The source code of this website (not including content covered by other
|
||||||
|
licenses) is licensed under the MIT license
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in
|
||||||
|
all copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
THE SOFTWARE.
|
||||||
148
README.md
148
README.md
@ -1,126 +1,10 @@
|
|||||||
# middleman-casper
|
# holgerjust.de
|
||||||
|
|
||||||
[](https://github.com/TryGhost/Casper)
|
My personal website based on [Middleman](http://middlemanapp.com), [middleman-blog](https://middlemanapp.com/basics/blogging/) and the [Casper theme](https://github.com/danielbayerlein/middleman-casper).
|
||||||
|
|
||||||
The [Casper](https://github.com/TryGhost/Casper) theme
|
You can browse the website at https://holgerjust.de
|
||||||
([Ghost](https://github.com/TryGhost/Ghost)) for
|
|
||||||
[Middleman-Blog](http://middlemanapp.com/basics/blogging/).
|
|
||||||
|
|
||||||
## Installation
|
All the content in this blog is licensed under one of multiple open source license. See `LICENSE.txt` for details.
|
||||||
|
|
||||||
1. Clone **middleman-casper** into `~/.middleman`.
|
|
||||||
You will need to create this directory if it doesn't exist.
|
|
||||||
```bash
|
|
||||||
$ git clone https://github.com/danielbayerlein/middleman-casper.git ~/.middleman/casper
|
|
||||||
```
|
|
||||||
|
|
||||||
2. Create a new project with the template:
|
|
||||||
```bash
|
|
||||||
$ middleman init blog --template=casper
|
|
||||||
```
|
|
||||||
|
|
||||||
3. Change the `casper` settings in `config.rb`.
|
|
||||||
|
|
||||||
## Usage
|
|
||||||
|
|
||||||
Start a local web server running at `http://localhost:4567/` with:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
$ middleman server
|
|
||||||
```
|
|
||||||
|
|
||||||
Create a static file with:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
$ middleman build
|
|
||||||
```
|
|
||||||
|
|
||||||
For help, see the official [Middleman](http://middlemanapp.com) website.
|
|
||||||
|
|
||||||
### Author
|
|
||||||
|
|
||||||
Configurable in *config.rb*:
|
|
||||||
|
|
||||||
```ruby
|
|
||||||
set :casper, {
|
|
||||||
...
|
|
||||||
author: {
|
|
||||||
name: 'Middleman'
|
|
||||||
}
|
|
||||||
...
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
### Navigation
|
|
||||||
|
|
||||||
Configurable in *config.rb*:
|
|
||||||
|
|
||||||
```ruby
|
|
||||||
set :casper, {
|
|
||||||
...
|
|
||||||
navigation: {
|
|
||||||
"Home" => "/",
|
|
||||||
"GitHub" => "https://github.com",
|
|
||||||
"Author" => "/author/middleman/"
|
|
||||||
}
|
|
||||||
...
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
### Logo
|
|
||||||
|
|
||||||
Configurable in *config.rb*:
|
|
||||||
|
|
||||||
```ruby
|
|
||||||
set :casper, {
|
|
||||||
...
|
|
||||||
blog: {
|
|
||||||
logo: 'my-awesome-blog-logo.png' # sources/images/my-awesome-blog-logo.png
|
|
||||||
}
|
|
||||||
...
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
### Pages
|
|
||||||
|
|
||||||
Content of *example.html.markdown*:
|
|
||||||
|
|
||||||
```markdown
|
|
||||||
---
|
|
||||||
title: Example
|
|
||||||
layout: page
|
|
||||||
---
|
|
||||||
|
|
||||||
Welcome!
|
|
||||||
|
|
||||||
```
|
|
||||||
|
|
||||||
### Covers
|
|
||||||
|
|
||||||
Covers are availible in pages and articles. Content of *example.html.markdown*:
|
|
||||||
|
|
||||||
```markdown
|
|
||||||
---
|
|
||||||
title: Example
|
|
||||||
layout: page
|
|
||||||
cover: my-awesome-blog-cover.png # sources/images/my-awesome-blog-cover.png
|
|
||||||
---
|
|
||||||
|
|
||||||
Welcome!
|
|
||||||
|
|
||||||
```
|
|
||||||
|
|
||||||
## Update middleman-casper to the latest version
|
|
||||||
|
|
||||||
```bash
|
|
||||||
$ git remote add middleman-casper https://github.com/danielbayerlein/middleman-casper.git
|
|
||||||
$ git pull middleman-casper master
|
|
||||||
```
|
|
||||||
|
|
||||||
## Special Thanks
|
|
||||||
|
|
||||||
* [Ghost Foundation](https://github.com/TryGhost/Ghost) for
|
|
||||||
[Casper](https://github.com/TryGhost/Casper)
|
|
||||||
|
|
||||||
## Contributing
|
## Contributing
|
||||||
|
|
||||||
@ -129,27 +13,3 @@ $ git pull middleman-casper master
|
|||||||
3. Commit your changes (`git commit -am 'Add some feature'`)
|
3. Commit your changes (`git commit -am 'Add some feature'`)
|
||||||
4. Push to the branch (`git push origin my-new-feature`)
|
4. Push to the branch (`git push origin my-new-feature`)
|
||||||
5. Create new [Pull Request](../../pull/new/master)
|
5. Create new [Pull Request](../../pull/new/master)
|
||||||
|
|
||||||
## License
|
|
||||||
|
|
||||||
The MIT License (MIT)
|
|
||||||
|
|
||||||
Copyright (c) 2015 Daniel Bayerlein
|
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
|
||||||
in the Software without restriction, including without limitation the rights
|
|
||||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
||||||
copies of the Software, and to permit persons to whom the Software is
|
|
||||||
furnished to do so, subject to the following conditions:
|
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be included in
|
|
||||||
all copies or substantial portions of the Software.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
||||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
||||||
THE SOFTWARE.
|
|
||||||
|
|||||||
@ -17,20 +17,28 @@ E-Mail: <a href="mailto:<%= blog_author.email %>"><%= blog_author.email %></a>
|
|||||||
Diese Daten dürfen nicht zu Werbezwecken genutzt werden.<br>
|
Diese Daten dürfen nicht zu Werbezwecken genutzt werden.<br>
|
||||||
This data may not be used for advertising purposes.
|
This data may not be used for advertising purposes.
|
||||||
|
|
||||||
## License
|
## Licenses
|
||||||
|
|
||||||
Unless noted otherwise on the respective pages the following licenses apply to
|
Unless noted otherwise on the respective pages the following licenses apply to
|
||||||
content published on this website:
|
content published on this website:
|
||||||
|
|
||||||
* All written text of this website is licensed under [CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/).
|
* All written text of this website is licensed under [CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/) unless noted otherwise on the respective article.
|
||||||
* Images published on this website are licensed under [CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/)
|
* Images published on this website are licensed under [CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/)
|
||||||
or their respective license. Please note the copyright and license statements
|
or their respective license. Please note the copyright and license statements
|
||||||
near the respective image.
|
near the respective image and on the bottom of the pages.
|
||||||
* Any published source code including the source of the website itself is
|
* Any published source code inside of articles as well as the source code of the
|
||||||
licensed under the [MIT license](https://opensource.org/licenses/MIT).
|
website itself is licensed under the [MIT license](https://opensource.org/licenses/MIT).
|
||||||
|
You can find this website's sources on [GitHub](https://github.com/meineerde/holgerjust.de).
|
||||||
|
|
||||||
This website uses various photos from [Unsplash](https://unsplash.com). The
|
Fonts used on this website are licensed under these terms:
|
||||||
layout is based on [middleman-casper](https://github.com/danielbayerlein/middleman-casper)
|
|
||||||
by Daniel Bayerlein licensed under MIT which in turn is based on the [Casper
|
* [Merriweather](https://www.google.com/fonts/specimen/Merriweather) by Eben Sorkin is licensed under the [SIL Open Font License](http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL)
|
||||||
|
* [Open Sans](https://www.google.com/fonts/specimen/Open+Sans) by Steve Matteson is licensed under the [Apache License, version 2.0](http://www.apache.org/licenses/LICENSE-2.0.html)
|
||||||
|
* The icons font of [Fontello](http://fontello.com/) is licensed under the [SIL Open Font License](http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL)
|
||||||
|
* That [casper-icons](https://github.com/TryGhost/Casper/tree/1c092c7be098bed496eaa2f194a3ae39dd23659d/assets/fonts) font by Ghost is licensed under the [MIT License](https://github.com/TryGhost/Casper/blob/1c092c7be098bed496eaa2f194a3ae39dd23659d/LICENSE)
|
||||||
|
|
||||||
|
The design and layout is based on
|
||||||
|
[middleman-casper](https://github.com/danielbayerlein/middleman-casper)
|
||||||
|
by Daniel Bayerlein and licensed under MIT which in turn is based on the [Casper
|
||||||
theme](https://github.com/TryGhost/Casper) for the [Ghost](https://ghost.org/)
|
theme](https://github.com/TryGhost/Casper) for the [Ghost](https://ghost.org/)
|
||||||
blogging platform.
|
blogging platform.
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user