first version
22
.editorconfig
Normal file
@@ -0,0 +1,22 @@
|
||||
[*.{css,scss,less,js,json,ts,sass,html,hbs,mustache,phtml,html.twig,md,yml}]
|
||||
charset = utf-8
|
||||
indent_style = space
|
||||
indent_size = 2
|
||||
end_of_line = lf
|
||||
insert_final_newline = true
|
||||
trim_trailing_whitespace = true
|
||||
insert_final_newline = true
|
||||
|
||||
[*.md]
|
||||
indent_size = 4
|
||||
trim_trailing_whitespace = false
|
||||
|
||||
[site/templates/**.php]
|
||||
indent_size = 2
|
||||
|
||||
[site/snippets/**.php]
|
||||
indent_size = 2
|
||||
|
||||
[package.json,.{babelrc,editorconfig,eslintrc,lintstagedrc,stylelintrc}]
|
||||
indent_style = space
|
||||
indent_size = 2
|
37
.gitignore
vendored
Normal file
@@ -0,0 +1,37 @@
|
||||
# System files
|
||||
# ------------
|
||||
|
||||
Icon
|
||||
.DS_Store
|
||||
|
||||
# Temporary files
|
||||
# ---------------
|
||||
|
||||
/media/*
|
||||
!/media/index.html
|
||||
|
||||
# -------------SECURITY-------------
|
||||
# NEVER publish these files via Git!
|
||||
# -------------SECURITY-------------
|
||||
|
||||
# Cache Files
|
||||
# ---------------
|
||||
|
||||
/site/cache/*
|
||||
!/site/cache/index.html
|
||||
|
||||
# Accounts
|
||||
# ---------------
|
||||
|
||||
/site/accounts/*
|
||||
!/site/accounts/index.html
|
||||
|
||||
# Sessions
|
||||
# ---------------
|
||||
|
||||
/site/sessions/*
|
||||
!/site/sessions/index.html
|
||||
|
||||
# License
|
||||
# ---------------
|
||||
/site/config/.license
|
57
.htaccess
Executable file
@@ -0,0 +1,57 @@
|
||||
# Kirby .htaccess
|
||||
|
||||
# rewrite rules
|
||||
<IfModule mod_rewrite.c>
|
||||
|
||||
# enable awesome urls. i.e.:
|
||||
# http://yourdomain.com/about-us/team
|
||||
RewriteEngine on
|
||||
|
||||
# make sure to set the RewriteBase correctly
|
||||
# if you are running the site in a subfolder.
|
||||
# Otherwise links or the entire site will break.
|
||||
#
|
||||
# If your homepage is http://yourdomain.com/mysite
|
||||
# Set the RewriteBase to:
|
||||
#
|
||||
# RewriteBase /mysite
|
||||
|
||||
# In some enviroments it's necessary to
|
||||
# set the RewriteBase to:
|
||||
#
|
||||
# RewriteBase /
|
||||
|
||||
# block files and folders beginning with a dot, such as .git
|
||||
# except for the .well-known folder, which is used for Let's Encrypt and security.txt
|
||||
RewriteRule (^|/)\.(?!well-known\/) index.php [L]
|
||||
|
||||
# block text files in the content folder from being accessed directly
|
||||
RewriteRule ^content/(.*)\.(txt|md|mdown)$ index.php [L]
|
||||
|
||||
# block all files in the site folder from being accessed directly
|
||||
# except for requests to plugin assets files
|
||||
RewriteRule ^site/(.*) index.php [L]
|
||||
|
||||
# Enable authentication header
|
||||
SetEnvIf Authorization "(.*)" HTTP_AUTHORIZATION=$1
|
||||
|
||||
# block direct access to kirby and the panel sources
|
||||
RewriteRule ^kirby/(.*) index.php [L]
|
||||
|
||||
# make site links work
|
||||
RewriteCond %{REQUEST_FILENAME} !-f
|
||||
RewriteCond %{REQUEST_FILENAME} !-d
|
||||
RewriteRule ^(.*) index.php [L]
|
||||
|
||||
</IfModule>
|
||||
|
||||
# compress text file responses
|
||||
<IfModule mod_deflate.c>
|
||||
AddOutputFilterByType DEFLATE text/plain
|
||||
AddOutputFilterByType DEFLATE text/html
|
||||
AddOutputFilterByType DEFLATE text/css
|
||||
AddOutputFilterByType DEFLATE text/javascript
|
||||
AddOutputFilterByType DEFLATE application/json
|
||||
AddOutputFilterByType DEFLATE application/javascript
|
||||
AddOutputFilterByType DEFLATE application/x-javascript
|
||||
</IfModule>
|
85
README.md
Normal file
@@ -0,0 +1,85 @@
|
||||
# Kirby Starterkit
|
||||
|
||||
Kirby is a file-based CMS.
|
||||
Easy to setup. Easy to use. Flexible as hell.
|
||||
|
||||
## Trial
|
||||
|
||||
You can try Kirby on your local machine or on a test
|
||||
server as long as you need to make sure it is the right
|
||||
tool for your next project.
|
||||
|
||||
## Buy a license
|
||||
|
||||
You can purchase your Kirby license at
|
||||
<https://getkirby.com/buy>
|
||||
|
||||
A Kirby license is valid for a single domain. You can find
|
||||
Kirby's license agreement here: <https://getkirby.com/license>
|
||||
|
||||
## The Starterkit
|
||||
|
||||
Kirby's Starterkit comes with a small demo website and a fully
|
||||
configured panel. Feel free to modify it and play with it as
|
||||
much as you like.
|
||||
|
||||
There's also the [Langkit](https://github.com/getkirby/langkit.git)
|
||||
in case you need a multi-language installation.
|
||||
|
||||
## The Panel
|
||||
|
||||
You can find the login for Kirby's admin interface at
|
||||
http://yourdomain.com/panel. You will be guided through the signup
|
||||
process for your first user, when you visit the panel
|
||||
for the first time.
|
||||
|
||||
## Installation
|
||||
|
||||
Kirby does not require a database, which makes it very easy to
|
||||
install. Just copy Kirby's files to your server and visit the
|
||||
URL for your website in the browser.
|
||||
|
||||
**Please check if the invisible .htaccess file has been
|
||||
copied to your server correctly**
|
||||
|
||||
### Requirements
|
||||
|
||||
Kirby runs on PHP 7.1+, Apache or Nginx.
|
||||
|
||||
### Download
|
||||
|
||||
You can download the latest version of the Starterkit
|
||||
from https://download.getkirby.com
|
||||
|
||||
### With Git
|
||||
|
||||
If you are familiar with Git, you can clone Kirby's
|
||||
Starterkit repository from Github.
|
||||
|
||||
git clone https://github.com/getkirby/starterkit.git
|
||||
|
||||
## Documentation
|
||||
|
||||
<https://getkirby.com/docs>
|
||||
|
||||
## Issues
|
||||
|
||||
If you have a Github account, please report issues
|
||||
directly on Github: <https://github.com/getkirby/kirby/issues>
|
||||
|
||||
Otherwise you can use Kirby's forum: https://forum.getkirby.com
|
||||
or send us an email: <support@getkirby.com>
|
||||
|
||||
## Ideas & Feature Requests
|
||||
|
||||
If you have ideas for new features, please submit a ticket in our ideas repository:
|
||||
<https://github.com/getkirby/kirby/ideas>
|
||||
|
||||
## Support
|
||||
|
||||
<https://getkirby.com/support>
|
||||
|
||||
## Copyright
|
||||
|
||||
© 2009-2019 Bastian Allgeier (Bastian Allgeier GmbH)
|
||||
<https://getkirby.com>
|
176
assets/css/index.css
Normal file
@@ -0,0 +1,176 @@
|
||||
:root {
|
||||
--content-width: 65rem;
|
||||
}
|
||||
|
||||
*,
|
||||
*:after,
|
||||
*:before{
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
html {
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";;
|
||||
}
|
||||
|
||||
li {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
a {
|
||||
color: currentColor;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
strong, b {
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
img {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.page {
|
||||
padding: 5vh 5vw 10vh;
|
||||
}
|
||||
.page > * {
|
||||
max-width: var(--content-width);
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.header {
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
|
||||
.header a {
|
||||
position: relative;
|
||||
text-transform: uppercase;
|
||||
font-size: .875rem;
|
||||
letter-spacing: .05em;
|
||||
padding: .5rem 0;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.header .logo {
|
||||
display: block;
|
||||
margin-bottom: 1.5rem;
|
||||
padding: .5rem 0;
|
||||
}
|
||||
|
||||
.header {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.menu a {
|
||||
margin: 0 .75rem;
|
||||
}
|
||||
|
||||
.menu a[aria-current] {
|
||||
border-bottom: 2px solid #000;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 40rem) {
|
||||
.header .logo {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.header {
|
||||
flex-direction: row;
|
||||
justify-content: space-between;
|
||||
}
|
||||
.menu {
|
||||
margin-right: -.75rem;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
main {
|
||||
min-height: calc(100vh - 10rem);
|
||||
}
|
||||
|
||||
.intro {
|
||||
padding: 10vh 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.intro h1 {
|
||||
position: relative;
|
||||
margin-bottom: 1rem;
|
||||
font-weight: 900;
|
||||
font-size: calc(1vw + 2rem);
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.tags {
|
||||
text-align: center;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.075em;
|
||||
font-size: .75rem;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.text {
|
||||
line-height: 1.5em;
|
||||
}
|
||||
.text p,
|
||||
.text figure,
|
||||
.text ul,
|
||||
.text ol {
|
||||
margin-bottom: 1.5em;
|
||||
}
|
||||
.text h2 {
|
||||
font-size: 1.5rem;
|
||||
font-weight: 700;
|
||||
margin-top: 3rem;
|
||||
margin-bottom: 1.5rem;
|
||||
text-align: center;
|
||||
}
|
||||
.text > *:first-child {
|
||||
margin-top: 0;
|
||||
}
|
||||
.text a {
|
||||
position: relative;
|
||||
white-space: nowrap;
|
||||
font-weight: 500;
|
||||
z-index: 1;
|
||||
display: inline-block;
|
||||
border-bottom: 2px solid #000;
|
||||
}
|
||||
.text figure {
|
||||
padding-top: 1.5rem;
|
||||
padding-bottom: 1.5rem;
|
||||
}
|
||||
.text img {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.footer {
|
||||
padding: 1.5rem 5vw 10vh;
|
||||
text-align: center;
|
||||
max-width: var(--content-width);
|
||||
margin: 0 auto;
|
||||
line-height: 1.5em;
|
||||
}
|
||||
.footer a {
|
||||
display: inline-block;
|
||||
font-size: .875rem;
|
||||
}
|
||||
.footer > a {
|
||||
margin-bottom: 1.5rem;
|
||||
border-top: 2px solid #000;
|
||||
width: 16.5rem;
|
||||
padding-top: .5rem;
|
||||
}
|
||||
|
||||
.social a {
|
||||
margin: 0 .75rem;
|
||||
padding: .5rem 1rem;
|
||||
border: 2px solid #000;
|
||||
width: 7.5rem;
|
||||
}
|
||||
.social a:hover {
|
||||
background: #000;
|
||||
color: #fff;
|
||||
}
|
19
assets/css/templates/about.css
Normal file
@@ -0,0 +1,19 @@
|
||||
.layout {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr;
|
||||
grid-gap: 3rem;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 45rem) {
|
||||
.layout {
|
||||
grid-template-columns: 1fr 2fr;
|
||||
}
|
||||
}
|
||||
|
||||
.layout aside section {
|
||||
margin-bottom: 3rem;
|
||||
}
|
||||
|
||||
.layout aside h2 {
|
||||
margin-bottom: .75rem;
|
||||
}
|
57
assets/css/templates/album.css
Normal file
@@ -0,0 +1,57 @@
|
||||
.album-cover {
|
||||
position: relative;
|
||||
line-height: 0;
|
||||
margin-bottom: 6rem;
|
||||
background: #000;
|
||||
padding-bottom: 75%;
|
||||
}
|
||||
.album-cover figcaption {
|
||||
position: absolute;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
top: 0;
|
||||
background: rgba(0,0,0, .5);
|
||||
text-align: center;
|
||||
color: #fff;
|
||||
line-height: 1;
|
||||
padding: 1.5rem;
|
||||
}
|
||||
.album-cover img {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
.album-cover h1 {
|
||||
font-size: 3rem;
|
||||
}
|
||||
.album-text {
|
||||
max-width: 40rem;
|
||||
margin: 0 auto 6rem;
|
||||
text-align: center;
|
||||
}
|
||||
.album-gallery {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
align-items: center;
|
||||
margin: 0 auto;
|
||||
grid-gap: 1rem;
|
||||
max-width: calc(var(--content-width) - 15rem);
|
||||
justify-content: center;
|
||||
}
|
||||
.album-gallery[data-even] {
|
||||
grid-template-columns: repeat(4, 1fr);
|
||||
}
|
||||
.album-gallery[data-count="1"] {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
.album-gallery[data-count="2"] {
|
||||
grid-template-columns: 1fr 1fr;
|
||||
}
|
4
assets/css/templates/default.css
Normal file
@@ -0,0 +1,4 @@
|
||||
.text {
|
||||
max-width: 35rem;
|
||||
margin: 0 auto;
|
||||
}
|
76
assets/css/templates/home.css
Normal file
@@ -0,0 +1,76 @@
|
||||
.grid {
|
||||
display: grid;
|
||||
list-style: none;
|
||||
grid-gap: 1rem;
|
||||
line-height: 0;
|
||||
grid-template-columns: repeat(1, 1fr);
|
||||
grid-auto-flow: dense;
|
||||
}
|
||||
.grid li {
|
||||
position: relative;
|
||||
--cols: 1;
|
||||
--rows: 1;
|
||||
|
||||
overflow: hidden;
|
||||
background: #000;
|
||||
line-height: 0;
|
||||
}
|
||||
.grid li:first-child {
|
||||
--cols: 2;
|
||||
--rows: 2;
|
||||
}
|
||||
.grid li:nth-child(5) {
|
||||
--cols: 2;
|
||||
}
|
||||
.grid li:nth-child(6) {
|
||||
--rows: 2;
|
||||
}
|
||||
.grid li:nth-child(7) {
|
||||
--cols: 2;
|
||||
}
|
||||
.grid a {
|
||||
display: block;
|
||||
height: 10rem;
|
||||
}
|
||||
.grid img {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
transition: all .3s;
|
||||
}
|
||||
.grid figcaption {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
position: absolute;
|
||||
color: #fff;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
line-height: 1;
|
||||
text-align: center;
|
||||
background: rgba(0,0,0, .5);
|
||||
text-transform: uppercase;
|
||||
font-size: .875rem;
|
||||
letter-spacing: .125em;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 45em) {
|
||||
.grid {
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
}
|
||||
.grid li {
|
||||
grid-column-start: span var(--cols);
|
||||
grid-row-start: span var(--rows);
|
||||
}
|
||||
.grid a {
|
||||
padding-bottom: 52.65%;
|
||||
}
|
||||
}
|
33
assets/css/templates/note.css
Normal file
@@ -0,0 +1,33 @@
|
||||
.note {
|
||||
max-width: 35rem;
|
||||
margin: 0 auto;
|
||||
}
|
||||
.note-header {
|
||||
text-align: center;
|
||||
}
|
||||
.note-date {
|
||||
margin-bottom: .5rem;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.gallery {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
|
||||
grid-gap: 1.5rem;
|
||||
margin-bottom: 1.5rem;
|
||||
padding: 3rem 0;
|
||||
}
|
||||
.gallery figure a {
|
||||
border: 0;
|
||||
}
|
||||
.gallery figure {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 45rem) {
|
||||
.gallery {
|
||||
margin-left: -3rem;
|
||||
margin-right: -3rem;
|
||||
}
|
||||
}
|
20
assets/css/templates/notes.css
Normal file
@@ -0,0 +1,20 @@
|
||||
.notes {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
|
||||
grid-gap: 1.5rem;
|
||||
grid-auto-rows: 1fr;
|
||||
}
|
||||
.note {
|
||||
border: 2px solid #000;
|
||||
}
|
||||
.note a {
|
||||
display: block;
|
||||
padding: 1rem;
|
||||
line-height: 1.25em;
|
||||
}
|
||||
.note h2 {
|
||||
font-size: 1rem;
|
||||
}
|
||||
.note time {
|
||||
font-size: .75rem;
|
||||
}
|
62
assets/css/templates/photography.css
Normal file
@@ -0,0 +1,62 @@
|
||||
.albums {
|
||||
display: grid;
|
||||
list-style: none;
|
||||
grid-gap: 1rem;
|
||||
line-height: 0;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 30em) {
|
||||
.albums {
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
}
|
||||
}
|
||||
@media screen and (min-width: 60em) {
|
||||
.albums {
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
}
|
||||
.albums[data-even] {
|
||||
grid-template-columns: repeat(4, 1fr);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.albums li {
|
||||
overflow: hidden;
|
||||
background: #000;
|
||||
}
|
||||
.albums figure {
|
||||
position: relative;
|
||||
padding-bottom: 125%;
|
||||
}
|
||||
.albums figcaption {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
color: #fff;
|
||||
background: rgba(0,0,0, .5);
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: flex-end;
|
||||
line-height: 1.5em;
|
||||
padding: 1rem;
|
||||
font-size: .875rem;
|
||||
font-weight: 600;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: .125em;
|
||||
}
|
||||
.albums img {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
transition: all .3s;
|
||||
}
|
||||
.albums img:hover {
|
||||
opacity: .2;
|
||||
}
|
27
composer.json
Normal file
@@ -0,0 +1,27 @@
|
||||
{
|
||||
"name": "getkirby/starterkit",
|
||||
"description": "Kirby Starterkit",
|
||||
"type": "project",
|
||||
"keywords": ["kirby", "cms", "starterkit"],
|
||||
"homepage": "https://getkirby.com",
|
||||
"authors": [
|
||||
{
|
||||
"name": "Bastian Allgeier",
|
||||
"email": "bastian@getkirby.com",
|
||||
"homepage": "https://getkirby.com"
|
||||
}
|
||||
],
|
||||
"support": {
|
||||
"email": "support@getkirby.com",
|
||||
"issues": "https://github.com/getkirby/starterkit/issues",
|
||||
"forum": "https://forum.getkirby.com",
|
||||
"source": "https://github.com/getkirby/starterkit"
|
||||
},
|
||||
"require": {
|
||||
"php": ">=7.1.0",
|
||||
"getkirby/cms": "^3.0"
|
||||
},
|
||||
"config": {
|
||||
"optimize-autoloader": true
|
||||
}
|
||||
}
|
BIN
content/1_photography/1_animals/abba.jpg
Normal file
After Width: | Height: | Size: 116 KiB |
25
content/1_photography/1_animals/abba.jpg.txt
Normal file
@@ -0,0 +1,25 @@
|
||||
Caption:
|
||||
|
||||
----
|
||||
|
||||
Alt: A colorful fish
|
||||
|
||||
----
|
||||
|
||||
Photographer: Pietro Jeng
|
||||
|
||||
----
|
||||
|
||||
License: Unsplash
|
||||
|
||||
----
|
||||
|
||||
Link: https://unsplash.com/photos/0Sd2qqU5soQ
|
||||
|
||||
----
|
||||
|
||||
Template: image
|
||||
|
||||
----
|
||||
|
||||
Sort: 4
|
19
content/1_photography/1_animals/album.txt
Normal file
@@ -0,0 +1,19 @@
|
||||
Cover:
|
||||
|
||||
- peter-fox.jpg
|
||||
|
||||
----
|
||||
|
||||
Headline: Animals as leaders
|
||||
|
||||
----
|
||||
|
||||
Description: What does the fox say?
|
||||
|
||||
----
|
||||
|
||||
Tags: animals
|
||||
|
||||
----
|
||||
|
||||
Title: Animals
|
BIN
content/1_photography/1_animals/bird-reynolds.jpg
Normal file
After Width: | Height: | Size: 184 KiB |
25
content/1_photography/1_animals/bird-reynolds.jpg.txt
Normal file
@@ -0,0 +1,25 @@
|
||||
Caption: Lewa Wildlife Conservancy, Isiolo, Kenya
|
||||
|
||||
----
|
||||
|
||||
Alt: A lilac-breasted roller sitting on a branch
|
||||
|
||||
----
|
||||
|
||||
Photographer: David Clode
|
||||
|
||||
----
|
||||
|
||||
License: Unsplash
|
||||
|
||||
----
|
||||
|
||||
Link: https://unsplash.com/photos/7_TTPznVIQI
|
||||
|
||||
----
|
||||
|
||||
Template: image
|
||||
|
||||
----
|
||||
|
||||
Sort: 2
|
BIN
content/1_photography/1_animals/dumbo.jpg
Normal file
After Width: | Height: | Size: 208 KiB |
25
content/1_photography/1_animals/dumbo.jpg.txt
Normal file
@@ -0,0 +1,25 @@
|
||||
Caption:
|
||||
|
||||
----
|
||||
|
||||
Alt: An african elephant walking towards the camera
|
||||
|
||||
----
|
||||
|
||||
Photographer: AJ Robbie
|
||||
|
||||
----
|
||||
|
||||
License: Unsplash
|
||||
|
||||
----
|
||||
|
||||
Link: https://unsplash.com/photos/BuQ1RZckYW4
|
||||
|
||||
----
|
||||
|
||||
Template: image
|
||||
|
||||
----
|
||||
|
||||
Sort: 3
|
BIN
content/1_photography/1_animals/free-wheely.jpg
Normal file
After Width: | Height: | Size: 526 KiB |
25
content/1_photography/1_animals/free-wheely.jpg.txt
Normal file
@@ -0,0 +1,25 @@
|
||||
Caption:
|
||||
|
||||
----
|
||||
|
||||
Alt: Peacock Plumage
|
||||
|
||||
----
|
||||
|
||||
Photographer: Dean Nahum
|
||||
|
||||
----
|
||||
|
||||
License: Unsplash
|
||||
|
||||
----
|
||||
|
||||
Link: https://unsplash.com/photos/ecQDQb8lWDU
|
||||
|
||||
----
|
||||
|
||||
Template: image
|
||||
|
||||
----
|
||||
|
||||
Sort: 1
|
BIN
content/1_photography/1_animals/peter-fox.jpg
Normal file
After Width: | Height: | Size: 125 KiB |
25
content/1_photography/1_animals/peter-fox.jpg.txt
Normal file
@@ -0,0 +1,25 @@
|
||||
Caption: Alaska, United States
|
||||
|
||||
----
|
||||
|
||||
Alt: A fox staring at the camera
|
||||
|
||||
----
|
||||
|
||||
Photographer: Sunyu
|
||||
|
||||
----
|
||||
|
||||
License: Unsplash
|
||||
|
||||
----
|
||||
|
||||
Link: https://unsplash.com/photos/tIfrzHxhPYQ
|
||||
|
||||
----
|
||||
|
||||
Template: image
|
||||
|
||||
----
|
||||
|
||||
Sort: 5
|
BIN
content/1_photography/1_animals/steve-turtle.jpg
Normal file
After Width: | Height: | Size: 96 KiB |
25
content/1_photography/1_animals/steve-turtle.jpg.txt
Normal file
@@ -0,0 +1,25 @@
|
||||
Caption:
|
||||
|
||||
----
|
||||
|
||||
Alt: A turtle swimming under water
|
||||
|
||||
----
|
||||
|
||||
Photographer: Wexor Tmg
|
||||
|
||||
----
|
||||
|
||||
License: Unsplash
|
||||
|
||||
----
|
||||
|
||||
Link: https://unsplash.com/photos/L-2p8fapOA8
|
||||
|
||||
----
|
||||
|
||||
Template: image
|
||||
|
||||
----
|
||||
|
||||
Sort: 6
|
19
content/1_photography/2_trees/album.txt
Normal file
@@ -0,0 +1,19 @@
|
||||
Cover:
|
||||
|
||||
- monster-trees-in-the-fog.jpg
|
||||
|
||||
----
|
||||
|
||||
Headline: Trees - our friends with leaves
|
||||
|
||||
----
|
||||
|
||||
Description: Hug them if you like. They might not appreciate it though.
|
||||
|
||||
----
|
||||
|
||||
Tags: tree, forest
|
||||
|
||||
----
|
||||
|
||||
Title: Trees
|
BIN
content/1_photography/2_trees/cheesy-autumn.jpg
Normal file
After Width: | Height: | Size: 226 KiB |
21
content/1_photography/2_trees/cheesy-autumn.jpg.txt
Normal file
@@ -0,0 +1,21 @@
|
||||
Caption:
|
||||
|
||||
----
|
||||
|
||||
Alt: Colorful autumn forest
|
||||
|
||||
----
|
||||
|
||||
Photographer: Federico Bottos
|
||||
|
||||
----
|
||||
|
||||
License: Unsplash
|
||||
|
||||
----
|
||||
|
||||
Link: https://unsplash.com/photos/Z3NceSeZqgI
|
||||
|
||||
----
|
||||
|
||||
Template: image
|
BIN
content/1_photography/2_trees/last-tree-standing.jpg
Normal file
After Width: | Height: | Size: 146 KiB |
21
content/1_photography/2_trees/last-tree-standing.jpg.txt
Normal file
@@ -0,0 +1,21 @@
|
||||
Caption: Pregasina, Italy
|
||||
|
||||
----
|
||||
|
||||
Alt: A lonely tree above the fog
|
||||
|
||||
----
|
||||
|
||||
Photographer: Cristina Gottardi
|
||||
|
||||
----
|
||||
|
||||
License: Unsplash
|
||||
|
||||
----
|
||||
|
||||
Link: https://unsplash.com/photos/wVTGdIGdojc
|
||||
|
||||
----
|
||||
|
||||
Template: image
|
BIN
content/1_photography/2_trees/monster-trees-in-the-fog.jpg
Normal file
After Width: | Height: | Size: 195 KiB |
@@ -0,0 +1,21 @@
|
||||
Caption: Sequoia National Forest, United States
|
||||
|
||||
----
|
||||
|
||||
Alt: Huge trees reaching into the fog
|
||||
|
||||
----
|
||||
|
||||
Photographer: Victoria Palacios
|
||||
|
||||
----
|
||||
|
||||
License: Unsplash
|
||||
|
||||
----
|
||||
|
||||
Link: https://unsplash.com/photos/dfo06_DqxpA
|
||||
|
||||
----
|
||||
|
||||
Template: image
|
BIN
content/1_photography/2_trees/sharewood-forest.jpg
Normal file
After Width: | Height: | Size: 265 KiB |
21
content/1_photography/2_trees/sharewood-forest.jpg.txt
Normal file
@@ -0,0 +1,21 @@
|
||||
Caption: Bogd Khan Mountain, Mongolia
|
||||
|
||||
----
|
||||
|
||||
Alt: Picturesque path into the forest
|
||||
|
||||
----
|
||||
|
||||
Photographer: Deglee Degi
|
||||
|
||||
----
|
||||
|
||||
License: Unsplash
|
||||
|
||||
----
|
||||
|
||||
Link: https://unsplash.com/photos/wQImoykAwGs
|
||||
|
||||
----
|
||||
|
||||
Template: image
|
BIN
content/1_photography/2_trees/stay-in-the-car.jpg
Normal file
After Width: | Height: | Size: 251 KiB |
21
content/1_photography/2_trees/stay-in-the-car.jpg.txt
Normal file
@@ -0,0 +1,21 @@
|
||||
Caption: Acadia National Park Pond, Bar Harbor, United States
|
||||
|
||||
----
|
||||
|
||||
Alt: Scary forest road at night illuminated by break lights
|
||||
|
||||
----
|
||||
|
||||
Photographer: Adrian Pelletier
|
||||
|
||||
----
|
||||
|
||||
License: Unsplash
|
||||
|
||||
----
|
||||
|
||||
Link: https://unsplash.com/photos/OJev0ModVw8
|
||||
|
||||
----
|
||||
|
||||
Template: image
|
19
content/1_photography/3_sky/album.txt
Normal file
@@ -0,0 +1,19 @@
|
||||
Title: Sky
|
||||
|
||||
----
|
||||
|
||||
Cover:
|
||||
|
||||
- dark-forest.jpg
|
||||
|
||||
----
|
||||
|
||||
Headline: Stars and the universe and so on
|
||||
|
||||
----
|
||||
|
||||
Description:
|
||||
|
||||
----
|
||||
|
||||
Tags: stars, universe, up there
|
BIN
content/1_photography/3_sky/blood-moon.jpg
Normal file
After Width: | Height: | Size: 99 KiB |
25
content/1_photography/3_sky/blood-moon.jpg.txt
Normal file
@@ -0,0 +1,25 @@
|
||||
Caption: Laguna Beach, United States
|
||||
|
||||
----
|
||||
|
||||
Alt: Super blood moon
|
||||
|
||||
----
|
||||
|
||||
Photographer: Derek Liang
|
||||
|
||||
----
|
||||
|
||||
License: Unsplash
|
||||
|
||||
----
|
||||
|
||||
Link: https://unsplash.com/photos/XZyjr93zaZg
|
||||
|
||||
----
|
||||
|
||||
Template: image
|
||||
|
||||
----
|
||||
|
||||
Sort: 1
|
BIN
content/1_photography/3_sky/coconut-milkyway.jpg
Normal file
After Width: | Height: | Size: 199 KiB |
21
content/1_photography/3_sky/coconut-milkyway.jpg.txt
Normal file
@@ -0,0 +1,21 @@
|
||||
Caption: Maldives
|
||||
|
||||
----
|
||||
|
||||
Alt: Palm trees and the night sky with stars and the milky way
|
||||
|
||||
----
|
||||
|
||||
Photographer: Mohamed Ajufaan
|
||||
|
||||
----
|
||||
|
||||
License: Unsplash
|
||||
|
||||
----
|
||||
|
||||
Link: https://unsplash.com/photos/Y5GuEA4ThdY
|
||||
|
||||
----
|
||||
|
||||
Template: image
|
BIN
content/1_photography/3_sky/dark-forest.jpg
Normal file
After Width: | Height: | Size: 219 KiB |
25
content/1_photography/3_sky/dark-forest.jpg.txt
Normal file
@@ -0,0 +1,25 @@
|
||||
Caption: Mammoth Lakes, United States
|
||||
|
||||
----
|
||||
|
||||
Alt: The mikly way above mountains
|
||||
|
||||
----
|
||||
|
||||
Photographer: Robson Hatsukami Morgan
|
||||
|
||||
----
|
||||
|
||||
License: Unsplash
|
||||
|
||||
----
|
||||
|
||||
Link: https://unsplash.com/photos/-wEFdRCG4IU
|
||||
|
||||
----
|
||||
|
||||
Template: image
|
||||
|
||||
----
|
||||
|
||||
Sort: 4
|
BIN
content/1_photography/3_sky/desert-tree.jpg
Normal file
After Width: | Height: | Size: 538 KiB |
25
content/1_photography/3_sky/desert-tree.jpg.txt
Normal file
@@ -0,0 +1,25 @@
|
||||
Caption: Roubideau Canyon Road, Delta, United States
|
||||
|
||||
----
|
||||
|
||||
Alt: A tree with the night sky in the background
|
||||
|
||||
----
|
||||
|
||||
Photographer: Andrew Gloor
|
||||
|
||||
----
|
||||
|
||||
License: Unsplash
|
||||
|
||||
----
|
||||
|
||||
Link: https://unsplash.com/photos/q-D_FFvnob8
|
||||
|
||||
----
|
||||
|
||||
Template: image
|
||||
|
||||
----
|
||||
|
||||
Sort: 3
|
BIN
content/1_photography/3_sky/tent-in-the-woods.jpg
Normal file
After Width: | Height: | Size: 344 KiB |
21
content/1_photography/3_sky/tent-in-the-woods.jpg.txt
Normal file
@@ -0,0 +1,21 @@
|
||||
Caption: Zion National Park
|
||||
|
||||
----
|
||||
|
||||
Alt: A bright lit tent in the forest with the night sky and stars above
|
||||
|
||||
----
|
||||
|
||||
Photographer: Bobby Burch
|
||||
|
||||
----
|
||||
|
||||
License: Unsplash
|
||||
|
||||
----
|
||||
|
||||
Link: https://unsplash.com/photos/MEBqI9fzqao
|
||||
|
||||
----
|
||||
|
||||
Template: image
|
19
content/1_photography/4_ocean/album.txt
Normal file
@@ -0,0 +1,19 @@
|
||||
Cover:
|
||||
|
||||
- island-from-above.jpg
|
||||
|
||||
----
|
||||
|
||||
Headline: Oceans are quite nice
|
||||
|
||||
----
|
||||
|
||||
Description: Blue with lots of fish
|
||||
|
||||
----
|
||||
|
||||
Tags: ocean, water, blue
|
||||
|
||||
----
|
||||
|
||||
Title: Ocean
|
BIN
content/1_photography/4_ocean/attention-sharks.jpg
Normal file
After Width: | Height: | Size: 246 KiB |
21
content/1_photography/4_ocean/attention-sharks.jpg.txt
Normal file
@@ -0,0 +1,21 @@
|
||||
Caption: 2 Ocean Rd, Palm Beach, Australia
|
||||
|
||||
----
|
||||
|
||||
Alt: A lone surfer in the waves near the beach
|
||||
|
||||
----
|
||||
|
||||
Photographer: Ben Krygsman
|
||||
|
||||
----
|
||||
|
||||
License: Unsplash
|
||||
|
||||
----
|
||||
|
||||
Link: https://unsplash.com/photos/g8hHM7rc-kw
|
||||
|
||||
----
|
||||
|
||||
Template: image
|
BIN
content/1_photography/4_ocean/island-from-above.jpg
Normal file
After Width: | Height: | Size: 390 KiB |
25
content/1_photography/4_ocean/island-from-above.jpg.txt
Normal file
@@ -0,0 +1,25 @@
|
||||
Caption: Breckenridge, United States
|
||||
|
||||
----
|
||||
|
||||
Alt: Drone picture of a small, green island
|
||||
|
||||
----
|
||||
|
||||
Photographer: Nathan Anderson
|
||||
|
||||
----
|
||||
|
||||
License: Unsplash
|
||||
|
||||
----
|
||||
|
||||
Link: https://unsplash.com/photos/prIk6PdCrgg
|
||||
|
||||
----
|
||||
|
||||
Template: image
|
||||
|
||||
----
|
||||
|
||||
Sort: 1
|
BIN
content/1_photography/4_ocean/jellyfish.jpg
Normal file
After Width: | Height: | Size: 159 KiB |
25
content/1_photography/4_ocean/jellyfish.jpg.txt
Normal file
@@ -0,0 +1,25 @@
|
||||
Caption: Valencia, Spain
|
||||
|
||||
----
|
||||
|
||||
Alt: A swarm of jellyfish
|
||||
|
||||
----
|
||||
|
||||
Photographer: Joel Filipe
|
||||
|
||||
----
|
||||
|
||||
License: Unsplash
|
||||
|
||||
----
|
||||
|
||||
Link: https://unsplash.com/photos/_AjqGGafofE
|
||||
|
||||
----
|
||||
|
||||
Template: image
|
||||
|
||||
----
|
||||
|
||||
Sort: 3
|
BIN
content/1_photography/4_ocean/nasty-rocks.jpg
Normal file
After Width: | Height: | Size: 335 KiB |
25
content/1_photography/4_ocean/nasty-rocks.jpg.txt
Normal file
@@ -0,0 +1,25 @@
|
||||
Caption: Hastings Point, Australia
|
||||
|
||||
----
|
||||
|
||||
Alt: Waves crashing on rocks
|
||||
|
||||
----
|
||||
|
||||
Photographer: Bailey Mahon
|
||||
|
||||
----
|
||||
|
||||
License: Unsplash
|
||||
|
||||
----
|
||||
|
||||
Link: https://unsplash.com/photos/DiqUQYLov74
|
||||
|
||||
----
|
||||
|
||||
Template: image
|
||||
|
||||
----
|
||||
|
||||
Sort: 2
|
BIN
content/1_photography/4_ocean/smashed-by-waves.jpg
Normal file
After Width: | Height: | Size: 264 KiB |
25
content/1_photography/4_ocean/smashed-by-waves.jpg.txt
Normal file
@@ -0,0 +1,25 @@
|
||||
Caption: Sri Lanka, boosa
|
||||
|
||||
----
|
||||
|
||||
Alt: A wave from inside
|
||||
|
||||
----
|
||||
|
||||
Photographer: Maxwell Gifted
|
||||
|
||||
----
|
||||
|
||||
License: Unsplash
|
||||
|
||||
----
|
||||
|
||||
Link: https://unsplash.com/photos/RbNxSL2D-xM
|
||||
|
||||
----
|
||||
|
||||
Template: image
|
||||
|
||||
----
|
||||
|
||||
Sort: 4
|
BIN
content/1_photography/4_ocean/the-beach.jpg
Normal file
After Width: | Height: | Size: 518 KiB |
21
content/1_photography/4_ocean/the-beach.jpg.txt
Normal file
@@ -0,0 +1,21 @@
|
||||
Caption: Avalon Beach, Australia
|
||||
|
||||
----
|
||||
|
||||
Alt: Two surfers walking on the beach
|
||||
|
||||
----
|
||||
|
||||
Photographer: Lachlan Dempsey
|
||||
|
||||
----
|
||||
|
||||
License: Unsplash
|
||||
|
||||
----
|
||||
|
||||
Link: https://unsplash.com/photos/O14abKtZ5iY
|
||||
|
||||
----
|
||||
|
||||
Template: image
|
19
content/1_photography/5_desert/album.txt
Normal file
@@ -0,0 +1,19 @@
|
||||
Cover:
|
||||
|
||||
- indiana-jones.jpg
|
||||
|
||||
----
|
||||
|
||||
Headline: The desert is pretty hot
|
||||
|
||||
----
|
||||
|
||||
Description:
|
||||
|
||||
----
|
||||
|
||||
Tags: desert, sand, landscape
|
||||
|
||||
----
|
||||
|
||||
Title: Desert
|
BIN
content/1_photography/5_desert/area-51.jpg
Normal file
After Width: | Height: | Size: 82 KiB |
25
content/1_photography/5_desert/area-51.jpg.txt
Normal file
@@ -0,0 +1,25 @@
|
||||
Caption:
|
||||
|
||||
----
|
||||
|
||||
Alt: Night sky over the desert
|
||||
|
||||
----
|
||||
|
||||
Photographer: Idan Arad
|
||||
|
||||
----
|
||||
|
||||
License: Unsplash
|
||||
|
||||
----
|
||||
|
||||
Link: https://unsplash.com/photos/Z0IOLvbY-qM
|
||||
|
||||
----
|
||||
|
||||
Template: image
|
||||
|
||||
----
|
||||
|
||||
Sort: 1
|
BIN
content/1_photography/5_desert/death-trap.jpg
Normal file
After Width: | Height: | Size: 76 KiB |
25
content/1_photography/5_desert/death-trap.jpg.txt
Normal file
@@ -0,0 +1,25 @@
|
||||
Caption: Sandwich Harbour Historic, Namibia
|
||||
|
||||
----
|
||||
|
||||
Alt: A dead tree in the desert
|
||||
|
||||
----
|
||||
|
||||
Photographer: Ryan Cheng
|
||||
|
||||
----
|
||||
|
||||
License: Unsplash
|
||||
|
||||
----
|
||||
|
||||
Link: https://unsplash.com/photos/uqYy29Sfb8Q
|
||||
|
||||
----
|
||||
|
||||
Template: image
|
||||
|
||||
----
|
||||
|
||||
Sort: 5
|
BIN
content/1_photography/5_desert/dune.jpg
Normal file
After Width: | Height: | Size: 130 KiB |
25
content/1_photography/5_desert/dune.jpg.txt
Normal file
@@ -0,0 +1,25 @@
|
||||
Caption: Death Valley National Park, United States
|
||||
|
||||
----
|
||||
|
||||
Alt: A dune in the desert
|
||||
|
||||
----
|
||||
|
||||
Photographer: Jehyun Sung
|
||||
|
||||
----
|
||||
|
||||
License: Unsplash
|
||||
|
||||
----
|
||||
|
||||
Link: https://unsplash.com/photos/-Lc6azmFSk4
|
||||
|
||||
----
|
||||
|
||||
Template: image
|
||||
|
||||
----
|
||||
|
||||
Sort: 2
|
BIN
content/1_photography/5_desert/indiana-jones.jpg
Normal file
After Width: | Height: | Size: 154 KiB |
25
content/1_photography/5_desert/indiana-jones.jpg.txt
Normal file
@@ -0,0 +1,25 @@
|
||||
Caption: Antelope Canyon, United States
|
||||
|
||||
----
|
||||
|
||||
Alt: Antelope canyon lit by sunbeams
|
||||
|
||||
----
|
||||
|
||||
Photographer: Madhu Shesharam
|
||||
|
||||
----
|
||||
|
||||
License: Unsplash
|
||||
|
||||
----
|
||||
|
||||
Link: https://unsplash.com/photos/EVZxXuOEk3w
|
||||
|
||||
----
|
||||
|
||||
Template: image
|
||||
|
||||
----
|
||||
|
||||
Sort: 3
|
BIN
content/1_photography/5_desert/water-please.jpg
Normal file
After Width: | Height: | Size: 98 KiB |
25
content/1_photography/5_desert/water-please.jpg.txt
Normal file
@@ -0,0 +1,25 @@
|
||||
Caption:
|
||||
|
||||
----
|
||||
|
||||
Alt: The moon above the desert
|
||||
|
||||
----
|
||||
|
||||
Photographer: Jordan Steranka
|
||||
|
||||
----
|
||||
|
||||
License: Unsplash
|
||||
|
||||
----
|
||||
|
||||
Link: https://unsplash.com/photos/HAAq_zesf-Y
|
||||
|
||||
----
|
||||
|
||||
Template: image
|
||||
|
||||
----
|
||||
|
||||
Sort: 4
|
19
content/1_photography/6_mountains/album.txt
Normal file
@@ -0,0 +1,19 @@
|
||||
Cover:
|
||||
|
||||
- probably-photoshopped.jpg
|
||||
|
||||
----
|
||||
|
||||
Headline: Mountains are pretty big
|
||||
|
||||
----
|
||||
|
||||
Description: Mountains — where do they come from.
|
||||
|
||||
----
|
||||
|
||||
Tags: mountains, peak nature
|
||||
|
||||
----
|
||||
|
||||
Title: Mountains
|
BIN
content/1_photography/6_mountains/climbers-are-crazy.jpg
Normal file
After Width: | Height: | Size: 128 KiB |
25
content/1_photography/6_mountains/climbers-are-crazy.jpg.txt
Normal file
@@ -0,0 +1,25 @@
|
||||
Caption: Alabama Hills, United States
|
||||
|
||||
----
|
||||
|
||||
Alt: Mountain with an interesting rock formation
|
||||
|
||||
----
|
||||
|
||||
Photographer: Parker Amstutz
|
||||
|
||||
----
|
||||
|
||||
License: Unsplash
|
||||
|
||||
----
|
||||
|
||||
Link: https://unsplash.com/photos/4oBOCIpb3YQ
|
||||
|
||||
----
|
||||
|
||||
Template: image
|
||||
|
||||
----
|
||||
|
||||
Sort: 1
|
BIN
content/1_photography/6_mountains/non-potable.jpg
Normal file
After Width: | Height: | Size: 222 KiB |
25
content/1_photography/6_mountains/non-potable.jpg.txt
Normal file
@@ -0,0 +1,25 @@
|
||||
Caption: Téryho chata, Vysoké Tatry, Slovakia
|
||||
|
||||
----
|
||||
|
||||
Alt: A creek and mountain in the dusk
|
||||
|
||||
----
|
||||
|
||||
Photographer: Štefan Štefančík
|
||||
|
||||
----
|
||||
|
||||
License: Unsplash
|
||||
|
||||
----
|
||||
|
||||
Link: https://unsplash.com/photos/pmH_Y4Qetrk
|
||||
|
||||
----
|
||||
|
||||
Template: image
|
||||
|
||||
----
|
||||
|
||||
Sort: 2
|
BIN
content/1_photography/6_mountains/probably-photoshopped.jpg
Normal file
After Width: | Height: | Size: 103 KiB |
@@ -0,0 +1,25 @@
|
||||
Caption: Ancient Bristlecone Pine Forest, United States
|
||||
|
||||
----
|
||||
|
||||
Alt: Mountains in the dusk
|
||||
|
||||
----
|
||||
|
||||
Photographer: John Towner
|
||||
|
||||
----
|
||||
|
||||
License: Unsplash
|
||||
|
||||
----
|
||||
|
||||
Link: https://unsplash.com/photos/JgOeRuGD_Y4
|
||||
|
||||
----
|
||||
|
||||
Template: image
|
||||
|
||||
----
|
||||
|
||||
Sort: 3
|
BIN
content/1_photography/6_mountains/that-apple-mountain.jpg
Normal file
After Width: | Height: | Size: 188 KiB |
@@ -0,0 +1,25 @@
|
||||
Caption: Yosemite National Park, USA
|
||||
|
||||
----
|
||||
|
||||
Alt: The magic unfolds in Yosemite Valley
|
||||
|
||||
----
|
||||
|
||||
Photographer: Madhu Shesharam
|
||||
|
||||
----
|
||||
|
||||
License: Unsplash
|
||||
|
||||
----
|
||||
|
||||
Link: https://unsplash.com/photos/HRA_VAi9_Nc
|
||||
|
||||
----
|
||||
|
||||
Template: image
|
||||
|
||||
----
|
||||
|
||||
Sort: 4
|
BIN
content/1_photography/6_mountains/trees-and-another-mountain.jpg
Normal file
After Width: | Height: | Size: 197 KiB |
@@ -0,0 +1,25 @@
|
||||
Caption: Rein in Taufers, South Tyrol, Italy
|
||||
|
||||
----
|
||||
|
||||
Alt: Foggy mountain with a color forest in the foreground
|
||||
|
||||
----
|
||||
|
||||
Photographer: Eberhard Grossgasteiger
|
||||
|
||||
----
|
||||
|
||||
License: Unsplash
|
||||
|
||||
----
|
||||
|
||||
Link: https://unsplash.com/photos/BXasVMRGsuo
|
||||
|
||||
----
|
||||
|
||||
Template: image
|
||||
|
||||
----
|
||||
|
||||
Sort: 5
|
19
content/1_photography/7_waterfall/album.txt
Normal file
@@ -0,0 +1,19 @@
|
||||
Cover:
|
||||
|
||||
- the-fall-is-lava.jpg
|
||||
|
||||
----
|
||||
|
||||
Headline: Water that falls
|
||||
|
||||
----
|
||||
|
||||
Description: Don't go chasing waterfalls
|
||||
|
||||
----
|
||||
|
||||
Tags: water, falls, down
|
||||
|
||||
----
|
||||
|
||||
Title: Waterfall
|
BIN
content/1_photography/7_waterfall/could-be-hawaii.jpg
Normal file
After Width: | Height: | Size: 172 KiB |
21
content/1_photography/7_waterfall/could-be-hawaii.jpg.txt
Normal file
@@ -0,0 +1,21 @@
|
||||
Caption: Mulafossur Waterfall, Faroe Islands
|
||||
|
||||
----
|
||||
|
||||
Alt: Spectacular cliffs and a waterfall
|
||||
|
||||
----
|
||||
|
||||
Photographer: Ben Tatlow
|
||||
|
||||
----
|
||||
|
||||
License: Unsplash
|
||||
|
||||
----
|
||||
|
||||
Link: https://unsplash.com/photos/0-9FgC-MVfM
|
||||
|
||||
----
|
||||
|
||||
Template: image
|
BIN
content/1_photography/7_waterfall/lots-of-water.jpg
Normal file
After Width: | Height: | Size: 196 KiB |
21
content/1_photography/7_waterfall/lots-of-water.jpg.txt
Normal file
@@ -0,0 +1,21 @@
|
||||
Caption: Aba, China
|
||||
|
||||
----
|
||||
|
||||
Alt: A huge waterfall in the forest
|
||||
|
||||
----
|
||||
|
||||
Photographer: Swander
|
||||
|
||||
----
|
||||
|
||||
License: Unsplash
|
||||
|
||||
----
|
||||
|
||||
Link: https://unsplash.com/photos/tHWCvzEeKPw
|
||||
|
||||
----
|
||||
|
||||
Template: image
|
BIN
content/1_photography/7_waterfall/maybe-iceland.jpg
Normal file
After Width: | Height: | Size: 90 KiB |
21
content/1_photography/7_waterfall/maybe-iceland.jpg.txt
Normal file
@@ -0,0 +1,21 @@
|
||||
Caption: Skógafoss, Iceland
|
||||
|
||||
----
|
||||
|
||||
Alt: Mighty waterfall with lots of mist
|
||||
|
||||
----
|
||||
|
||||
Photographer: Ruslan Valeev
|
||||
|
||||
----
|
||||
|
||||
License: Unsplash
|
||||
|
||||
----
|
||||
|
||||
Link: https://unsplash.com/photos/dMB2Lh13K5w
|
||||
|
||||
----
|
||||
|
||||
Template: image
|
BIN
content/1_photography/7_waterfall/not-niagra.jpg
Normal file
After Width: | Height: | Size: 229 KiB |
21
content/1_photography/7_waterfall/not-niagra.jpg.txt
Normal file
@@ -0,0 +1,21 @@
|
||||
Caption:
|
||||
|
||||
----
|
||||
|
||||
Alt: Waterfall and rocks
|
||||
|
||||
----
|
||||
|
||||
Photographer: Ivana Cajina
|
||||
|
||||
----
|
||||
|
||||
License: Unsplash
|
||||
|
||||
----
|
||||
|
||||
Link: https://unsplash.com/photos/9LwCEYH1oW4
|
||||
|
||||
----
|
||||
|
||||
Template: image
|
BIN
content/1_photography/7_waterfall/the-fall-is-lava.jpg
Normal file
After Width: | Height: | Size: 210 KiB |
21
content/1_photography/7_waterfall/the-fall-is-lava.jpg.txt
Normal file
@@ -0,0 +1,21 @@
|
||||
Caption: Yosemite Valley, United States
|
||||
|
||||
----
|
||||
|
||||
Alt: Nicely lit waterfall in the sunset that seems like lava
|
||||
|
||||
----
|
||||
|
||||
Photographer: Stephen Leonardi
|
||||
|
||||
----
|
||||
|
||||
License: Unsplash
|
||||
|
||||
----
|
||||
|
||||
Link: https://unsplash.com/photos/MDmwQVgDHHM
|
||||
|
||||
----
|
||||
|
||||
Template: image
|
BIN
content/1_photography/7_waterfall/twin-peaks.jpg
Normal file
After Width: | Height: | Size: 148 KiB |
21
content/1_photography/7_waterfall/twin-peaks.jpg.txt
Normal file
@@ -0,0 +1,21 @@
|
||||
Caption:
|
||||
|
||||
----
|
||||
|
||||
Alt: A waterfall in the forest
|
||||
|
||||
----
|
||||
|
||||
Photographer: Claude Piché
|
||||
|
||||
----
|
||||
|
||||
License: Unsplash
|
||||
|
||||
----
|
||||
|
||||
Link: https://unsplash.com/photos/Tqs2btwP7tQ
|
||||
|
||||
----
|
||||
|
||||
Template: image
|
19
content/1_photography/8_plants/album.txt
Normal file
@@ -0,0 +1,19 @@
|
||||
Cover:
|
||||
|
||||
- nice-colors-ugly-plant.jpg
|
||||
|
||||
----
|
||||
|
||||
Headline:
|
||||
|
||||
----
|
||||
|
||||
Description: They call me Dr. Greenthumb.
|
||||
|
||||
----
|
||||
|
||||
Tags: plants
|
||||
|
||||
----
|
||||
|
||||
Title: Plants
|
BIN
content/1_photography/8_plants/between-the-ferns.jpg
Normal file
After Width: | Height: | Size: 139 KiB |
21
content/1_photography/8_plants/between-the-ferns.jpg.txt
Normal file
@@ -0,0 +1,21 @@
|
||||
Caption:
|
||||
|
||||
----
|
||||
|
||||
Alt: Ferns in the dark
|
||||
|
||||
----
|
||||
|
||||
Photographer: Annie Spratt
|
||||
|
||||
----
|
||||
|
||||
License: Unsplash
|
||||
|
||||
----
|
||||
|
||||
Link: https://unsplash.com/photos/rjIacQc-uYs
|
||||
|
||||
----
|
||||
|
||||
Template: image
|
BIN
content/1_photography/8_plants/could-be-poisonous.jpg
Normal file
After Width: | Height: | Size: 171 KiB |