├── screenshot.png
├── static
└── resume.pdf
├── content
├── images
│ ├── js.png
│ ├── react.png
│ ├── favicon.png
│ ├── gatsby.png
│ ├── joystick.png
│ ├── medium.png
│ ├── mountain.png
│ ├── notebook.png
│ ├── wrench.png
│ ├── gem-stone.png
│ ├── wordpress.png
│ ├── high-voltage.png
│ ├── mobile-phone.png
│ ├── nail-polish.png
│ ├── shopping-bags.png
│ ├── waving-hand.png
│ ├── clement-h-95YRwf6CNw8-unsplash.jpg
│ ├── kelly-sikkema-Hl3LUdyKRic-unsplash.jpg
│ └── charles-deluvio-DgoyKNgPiFQ-unsplash.jpg
├── sections
│ ├── contact
│ │ └── contact.json
│ ├── hero
│ │ └── hero.json
│ ├── about
│ │ └── about.md
│ ├── interests
│ │ └── interests.json
│ ├── legal
│ │ ├── privacy.md
│ │ └── imprint.md
│ └── projects
│ │ └── projects.json
├── settings.json
└── articles
│ └── my-first-article
│ └── index.md
├── src
└── pages
│ ├── imprint.js
│ ├── privacy.js
│ └── index.js
├── .gitignore
├── LICENSE
├── gatsby-config.js
├── package.json
└── README.md
/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/konstantinruge/gatsby-starter-portfolio-minimal-theme/HEAD/screenshot.png
--------------------------------------------------------------------------------
/static/resume.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/konstantinruge/gatsby-starter-portfolio-minimal-theme/HEAD/static/resume.pdf
--------------------------------------------------------------------------------
/content/images/js.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/konstantinruge/gatsby-starter-portfolio-minimal-theme/HEAD/content/images/js.png
--------------------------------------------------------------------------------
/content/images/react.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/konstantinruge/gatsby-starter-portfolio-minimal-theme/HEAD/content/images/react.png
--------------------------------------------------------------------------------
/content/images/favicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/konstantinruge/gatsby-starter-portfolio-minimal-theme/HEAD/content/images/favicon.png
--------------------------------------------------------------------------------
/content/images/gatsby.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/konstantinruge/gatsby-starter-portfolio-minimal-theme/HEAD/content/images/gatsby.png
--------------------------------------------------------------------------------
/content/images/joystick.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/konstantinruge/gatsby-starter-portfolio-minimal-theme/HEAD/content/images/joystick.png
--------------------------------------------------------------------------------
/content/images/medium.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/konstantinruge/gatsby-starter-portfolio-minimal-theme/HEAD/content/images/medium.png
--------------------------------------------------------------------------------
/content/images/mountain.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/konstantinruge/gatsby-starter-portfolio-minimal-theme/HEAD/content/images/mountain.png
--------------------------------------------------------------------------------
/content/images/notebook.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/konstantinruge/gatsby-starter-portfolio-minimal-theme/HEAD/content/images/notebook.png
--------------------------------------------------------------------------------
/content/images/wrench.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/konstantinruge/gatsby-starter-portfolio-minimal-theme/HEAD/content/images/wrench.png
--------------------------------------------------------------------------------
/content/images/gem-stone.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/konstantinruge/gatsby-starter-portfolio-minimal-theme/HEAD/content/images/gem-stone.png
--------------------------------------------------------------------------------
/content/images/wordpress.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/konstantinruge/gatsby-starter-portfolio-minimal-theme/HEAD/content/images/wordpress.png
--------------------------------------------------------------------------------
/content/images/high-voltage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/konstantinruge/gatsby-starter-portfolio-minimal-theme/HEAD/content/images/high-voltage.png
--------------------------------------------------------------------------------
/content/images/mobile-phone.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/konstantinruge/gatsby-starter-portfolio-minimal-theme/HEAD/content/images/mobile-phone.png
--------------------------------------------------------------------------------
/content/images/nail-polish.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/konstantinruge/gatsby-starter-portfolio-minimal-theme/HEAD/content/images/nail-polish.png
--------------------------------------------------------------------------------
/content/images/shopping-bags.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/konstantinruge/gatsby-starter-portfolio-minimal-theme/HEAD/content/images/shopping-bags.png
--------------------------------------------------------------------------------
/content/images/waving-hand.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/konstantinruge/gatsby-starter-portfolio-minimal-theme/HEAD/content/images/waving-hand.png
--------------------------------------------------------------------------------
/content/images/clement-h-95YRwf6CNw8-unsplash.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/konstantinruge/gatsby-starter-portfolio-minimal-theme/HEAD/content/images/clement-h-95YRwf6CNw8-unsplash.jpg
--------------------------------------------------------------------------------
/content/images/kelly-sikkema-Hl3LUdyKRic-unsplash.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/konstantinruge/gatsby-starter-portfolio-minimal-theme/HEAD/content/images/kelly-sikkema-Hl3LUdyKRic-unsplash.jpg
--------------------------------------------------------------------------------
/content/images/charles-deluvio-DgoyKNgPiFQ-unsplash.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/konstantinruge/gatsby-starter-portfolio-minimal-theme/HEAD/content/images/charles-deluvio-DgoyKNgPiFQ-unsplash.jpg
--------------------------------------------------------------------------------
/src/pages/imprint.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { LegalSection, Page, Seo } from "gatsby-theme-portfolio-minimal";
3 |
4 | export default function ImprintPage() {
5 | return (
6 | <>
7 |
8 |
9 |
10 |
11 | >
12 | );
13 | }
14 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # dependencies
2 | node_modules
3 | /.pnp
4 | .pnp.js
5 |
6 | # testing
7 | /coverage
8 |
9 | # production
10 | build
11 | public
12 |
13 | #development
14 | .cache
15 | .husky
16 | .vscode
17 |
18 | # misc
19 | .DS_Store
20 | .env.local
21 | .env.development.local
22 | .env.test.local
23 | .env.production.local
24 |
25 | npm-debug.log*
26 | yarn-debug.log*
27 | yarn-error.log*
28 | package-lock.json
--------------------------------------------------------------------------------
/src/pages/privacy.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { LegalSection, Page, Seo } from "gatsby-theme-portfolio-minimal";
3 |
4 | export default function PrivacyPage() {
5 | return (
6 | <>
7 |
8 |
9 |
10 |
11 | >
12 | );
13 | }
14 |
--------------------------------------------------------------------------------
/content/sections/contact/contact.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "Gatsby Starter For Portfolio Minimal",
3 | "email": "example@mail.com",
4 | "description": "If you have any problems with this theme, create an issue in the GitHub repository.",
5 | "image": {
6 | "src": "../../images/favicon.png",
7 | "alt": "Gatsby Logo"
8 | },
9 | "socialProfiles": {
10 | "from": ["LinkedIn", "Medium", "Github", "Mail"],
11 | "showIcons": true
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/content/sections/hero/hero.json:
--------------------------------------------------------------------------------
1 | {
2 | "intro": "Hej",
3 | "heroPhoto": {
4 | "src": "../../images/lego-dummy.png",
5 | "alt": "My Photo"
6 | },
7 | "image": {
8 | "src": "../../images/waving-hand.png",
9 | "alt": "Waving Hand Emoji"
10 | },
11 | "title": "I'm a Gatsby Starter",
12 | "subtitle": {
13 | "prefix": "I do all the setup ",
14 | "highlight": "for you",
15 | "suffix": "."
16 | },
17 | "description": "A Gatsby Starter Project to easily get started with Portfolio Minimal theme.",
18 | "socialProfiles": {
19 | "from": ["LinkedIn", "Medium", "Github", "Mail"],
20 | "showIcons": false
21 | }
22 | }
23 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | BSD Zero Clause License
2 |
3 | Copyright (c) 2021 Konstantin Münster
4 |
5 | Permission to use, copy, modify, and/or distribute this software for any
6 | purpose with or without fee is hereby granted.
7 |
8 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
9 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
10 | AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
11 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
12 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
13 | OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
14 | PERFORMANCE OF THIS SOFTWARE.
15 |
--------------------------------------------------------------------------------
/src/pages/index.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import {
3 | AboutSection,
4 | ArticlesSection,
5 | ContactSection,
6 | HeroSection,
7 | InterestsSection,
8 | Page,
9 | ProjectsSection,
10 | Seo,
11 | } from "gatsby-theme-portfolio-minimal";
12 |
13 | export default function IndexPage() {
14 | return (
15 | <>
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 | >
26 | );
27 | }
28 |
--------------------------------------------------------------------------------
/content/sections/about/about.md:
--------------------------------------------------------------------------------
1 | ---
2 | imageSrc: "../../images/charles-deluvio-DgoyKNgPiFQ-unsplash.jpg"
3 | imageAlt: "About Gatsby Theme Portfolio Minimal"
4 | ---
5 |
6 | Portfolio Minimal is a Gatsby Theme that creates outstanding one-pages portfolio within minutes!
7 |
8 | It has predefined sections for your bio, skills, projects, and contact details. If you are a writer on Medium, you can integrate your latest articles in a distinct section as well. While building the theme, I tried to keep the setup as simple as possible while keeping everything configurable if you like to.
9 |
10 | Using theme composition, you can easily customize the CSS theme to your own preferences - e.g. change colors, fonts, etc.
11 |
12 | Last but not least, it has some cool features you can opt-in to: Dark Mode, Splash Screen, Cookie Banner, and more to find out :)
13 |
14 | Photo by Charles Deluvio on Unsplash
15 |
--------------------------------------------------------------------------------
/gatsby-config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | plugins: [
3 | {
4 | resolve: "gatsby-theme-portfolio-minimal",
5 | options: {
6 | siteUrl: "https://gatsby-starter-portfolio-minimal-theme.netlify.app/", // Used for sitemap generation
7 | manifestSettings: {
8 | favicon: "./content/images/favicon.png", // Path is relative to the root
9 | siteName: "My Minimal Portfolio", // Used in manifest.json
10 | shortName: "Portfolio", // Used in manifest.json
11 | startUrl: "/", // Used in manifest.json
12 | backgroundColor: "#FFFFFF", // Used in manifest.json
13 | themeColor: "#000000", // Used in manifest.json
14 | display: "minimal-ui", // Used in manifest.json
15 | },
16 | contentDirectory: "./content",
17 | blogSettings: {
18 | path: "/blog", // Defines the slug for the blog listing page
19 | usePathPrefixForArticles: false, // Default true (i.e. path will be /blog/first-article)
20 | },
21 | // googleAnalytics: {
22 | // trackingId: "UA-XXXXXX-X",
23 | // anonymize: true, // Default true
24 | // environments: ["production", "development"] // Default ["production"]
25 | // }
26 | },
27 | },
28 | ],
29 | };
30 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "gatsby-starter-portfolio-minimal-theme",
3 | "version": "1.0.0",
4 | "description": "A Gatsby Starter Project to easily get started with the Portfolio Minimal Theme.",
5 | "scripts": {
6 | "clean": "gatsby clean",
7 | "develop": "gatsby develop",
8 | "build": "gatsby build",
9 | "serve": "gatsby serve"
10 | },
11 | "engines": {
12 | "node": ">=18.0.0"
13 | },
14 | "dependencies": {
15 | "gatsby": "^5.0.1",
16 | "gatsby-theme-portfolio-minimal": "latest",
17 | "react": "^18.2.0",
18 | "react-dom": "^18.2.0"
19 | },
20 | "author": "Konstantin Münster ",
21 | "license": "0BSD",
22 | "starter-name": "gatsby-starter-portfolio-minimal-theme",
23 | "homepage": "https://github.com/konstantinmuenster/gatsby-starter-portfolio-minimal-theme#readme",
24 | "repository": {
25 | "type": "git",
26 | "url": "https://github.com/konstantinmuenster/gatsby-starter-portfolio-minimal-theme.git"
27 | },
28 | "bugs": {
29 | "url": "https://github.com/konstantinmuenster/gatsby-starter-portfolio-minimal-theme/issues"
30 | },
31 | "keywords": [
32 | "react",
33 | "gatsby",
34 | "gatsby-theme",
35 | "PWA",
36 | "portfolio",
37 | "showcase",
38 | "minimal",
39 | "animations",
40 | "dark-mode",
41 | "gdpr-compliant"
42 | ]
43 | }
44 |
--------------------------------------------------------------------------------
/content/sections/interests/interests.json:
--------------------------------------------------------------------------------
1 | {
2 | "interests": [
3 | {
4 | "label": "Quick and Easy Setup",
5 | "image": {
6 | "src": "../../images/joystick.png",
7 | "alt": ""
8 | }
9 | },
10 | {
11 | "label": "Content via Markdown",
12 | "image": {
13 | "src": "../../images/notebook.png",
14 | "alt": ""
15 | }
16 | },
17 | {
18 | "label": "Responsive Design",
19 | "image": {
20 | "src": "../../images/nail-polish.png",
21 | "alt": ""
22 | }
23 | },
24 | {
25 | "label": "Medium Integration",
26 | "image": {
27 | "src": "../../images/medium.png",
28 | "alt": ""
29 | }
30 | },
31 | {
32 | "label": "Animations",
33 | "image": {
34 | "src": "../../images/gem-stone.png",
35 | "alt": ""
36 | }
37 | },
38 | {
39 | "label": "PWA (Offline Support)",
40 | "image": {
41 | "src": "../../images/mobile-phone.png",
42 | "alt": ""
43 | }
44 | },
45 | {
46 | "label": "Modern Tech-Stack",
47 | "image": {
48 | "src": "../../images/gatsby.png",
49 | "alt": ""
50 | }
51 | },
52 | {
53 | "label": "Blazing Fast",
54 | "image": {
55 | "src": "../../images/high-voltage.png",
56 | "alt": ""
57 | }
58 | }
59 | ],
60 | "button": {
61 | "visible": true,
62 | "label": "+ Load More",
63 | "initiallyShownInterests": 5
64 | }
65 | }
66 |
--------------------------------------------------------------------------------
/content/sections/legal/privacy.md:
--------------------------------------------------------------------------------
1 | ---
2 | sectionId: privacy
3 | ---
4 |
5 | Your privacy is important to me. It is my, YOURNAME, policy to respect your privacy regarding any information I may collect from you across my website, YOURDOMAIN.
6 |
7 | I only ask for personal information when I truly need it to provide a service to you. I collect it by fair and lawful means, with your knowledge and consent. I also let you know why I am collecting it and how it will be used.
8 |
9 | I only retain collected information for as long as necessary to provide you with your requested service. What data I store, I'll protect within commercially acceptable means to prevent loss and theft, as well as unauthorised access, disclosure, copying, use or modification.
10 |
11 | I don’t share any personally identifying information publicly or with third-parties, except when required to by law.
12 |
13 | My website may link to external sites that are not operated by me. Please be aware that I have no control over the content and practices of these sites, and cannot accept responsibility or liability for their respective privacy policies.
14 |
15 | You are free to refuse my request for your personal information, with the understanding that I may be unable to provide you with some of your desired services.
16 |
17 | Your continued use of my website will be regarded as acceptance of my practices around privacy and personal information. If you have any questions about how I handle user data and personal information, feel free to contact me.
18 |
19 | This policy is effective as of 22 September 2019. It has been generated with the help of GetTerms.io.
20 |
--------------------------------------------------------------------------------
/content/settings.json:
--------------------------------------------------------------------------------
1 | {
2 | "siteMetadata": {
3 | "language": "en",
4 | "siteUrl": "https://gatsby-starter-portfolio-minimal-theme.netlify.app/",
5 | "title": "Gatsby Starter for Portfolio Minimal",
6 | "titleTemplate": "%s · Portfolio Minimal",
7 | "description": "A Gatsby Starter Project to easily get started with Portfolio Minimal theme.",
8 | "author": "Konstantin Münster",
9 | "avatar": "../content/images/gatsby.png",
10 | "bio": "This biography will be used in the footer area of an article and can contain some more details about the author.",
11 | "social": {
12 | "behance": "https://behance.com",
13 | "github": "https://github.com/konstantinmuenster",
14 | "medium": "https://konstantinmuenster.medium.com",
15 | "linkedin": "https://www.linkedin.com/in/konstantin-muenster/",
16 | "mail": "mailto:mail@konstantin.digital"
17 | }
18 | },
19 | "siteConfiguration": {
20 | "logo": { "text": "Portfolio" },
21 | "navigation": {
22 | "header": [
23 | { "label": "About", "url": "/#about" },
24 | { "label": "Blog", "url": "/blog" },
25 | { "label": "Features", "url": "/#features" },
26 | { "label": "Github", "url": "/#github" }
27 | ],
28 | "ctaButton": {
29 | "openNewTab": true,
30 | "label": "Resume",
31 | "url": "/resume.pdf"
32 | },
33 | "footer": [
34 | { "label": "Privacy", "url": "/privacy" },
35 | { "label": "Imprint", "url": "/imprint" }
36 | ]
37 | },
38 | "featureToggles": {
39 | "useDarkModeAsDefault": false,
40 | "useDarkModeBasedOnUsersPreference": true,
41 | "useCookieBar": false
42 | }
43 | }
44 | }
45 |
--------------------------------------------------------------------------------
/content/sections/projects/projects.json:
--------------------------------------------------------------------------------
1 | {
2 | "projects": [
3 | {
4 | "visible": true,
5 | "category": "🕹️ EASY AND QUICK SETUP",
6 | "title": "Add content and deploy!",
7 | "description": "Get up and running within minutes. Just install the starter, add your content, deploy it, and there you go! This starter works seamlessly with hosts like Netlify. Photo by Clément H on Unsplash.",
8 | "tags": ["Content Integration", "Ready-2-Deploy"],
9 | "image": {
10 | "src": "../../images/clement-h-95YRwf6CNw8-unsplash.jpg",
11 | "alt": "Quick Setup",
12 | "linkTo": "https://github.com/konstantinmuenster/gatsby-starter-portfolio-minimal-theme"
13 | },
14 | "links": [
15 | {
16 | "type": "github",
17 | "url": "https://github.com/konstantinmuenster/gatsby-starter-portfolio-minimal-theme"
18 | },
19 | {
20 | "type": "external",
21 | "url": "https://www.gatsbyjs.org/docs/mdx/writing-pages/"
22 | }
23 | ]
24 | },
25 | {
26 | "visible": true,
27 | "category": "🧰 EXTENDABLE LAYOUT",
28 | "title": "Add more sections!",
29 | "description": "The starter includes predefined sections as well as a template for new, custom sections. Moreover, you can add new projects to this section without additional coding. Photo by Kelly Sikkema on Unsplash.",
30 | "tags": ["Custom Sections", "Easy-2-Use"],
31 | "image": {
32 | "src": "../../images/kelly-sikkema-Hl3LUdyKRic-unsplash.jpg",
33 | "alt": "Extendable Layout"
34 | },
35 | "links": [
36 | {
37 | "type": "github",
38 | "url": "https://github.com/konstantinmuenster/gatsby-starter-portfolio-minimal-theme"
39 | }
40 | ]
41 | }
42 | ],
43 | "button": {
44 | "visible": true,
45 | "label": "Visit on Github",
46 | "url": "https://github.com/konstantinmuenster/gatsby-theme-portfolio-minimal"
47 | }
48 | }
49 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | # Gatsby Starter Portfolio Minimal Theme
8 |
9 | #### A Gatsby Starter Project to easily get started with the Portfolio Minimal Theme.
10 |
11 | Portfolio Minimal is a Gatsby Theme that let's you create outstanding one-page portfolios within minutes. This Gatsby Starter is a boilerplate project that has the theme pre-installed and pre-configured.
12 |
13 | Just clone this Gatsby Starter, add the content. And that's it!
14 |
15 | [Live Demo on Gatsby Cloud](https://gatsbystarterportfoliominimalt.gatsbyjs.io/) · [Live Demo on Netlify](https://gatsby-starter-portfolio-minimal-theme.netlify.app/) · [Portfolio Minimal Theme on Github](https://github.com/konstantinmuenster/gatsby-theme-portfolio-minimal)
16 |
17 | ---
18 |
19 | ## Installation
20 |
21 | 1. Install the Gatsby CLI
22 |
23 | ```sh
24 | npm install -g gatsby-cli
25 | ```
26 |
27 | 2. Create a new Gatsby site with the Portfolio Minimal Starter.
28 |
29 | ```sh
30 | gatsby new portfolio-minimal https://github.com/konstantinmuenster/gatsby-starter-portfolio-minimal-theme
31 | ```
32 |
33 | 3. Once installed, you can begin developing your site.
34 |
35 | ```sh
36 | cd portfolio-minimal
37 | gatsby develop
38 | ```
39 |
40 | 4. By default, the Portfolio Minimal Starter has a `content` directory at the root of your Gatsby site. There, you can edit the theme settings as well as add content for your sections. To learn more about it, have a look at the [Readme of Portfolio Minimal](https://github.com/konstantinmuenster/gatsby-theme-portfolio-minimal/tree/main/gatsby-theme-portfolio-minimal#readme).
41 |
42 | ---
43 |
44 | ## Issues?
45 |
46 | If you find any bugs or have feature suggestions, create a new issue or pull request 🙏
47 |
48 | Thanks a lot for using this starter! 💪
49 |
50 | ---
51 |
52 |
53 |
54 | Konstantin Münster – [konstantin.digital](https://konstantin.digital)
55 |
--------------------------------------------------------------------------------
/content/sections/legal/imprint.md:
--------------------------------------------------------------------------------
1 | ---
2 | sectionId: imprint
3 | ---
4 |
5 | #### Information pursuant to § 5 TMG
6 |
7 | YOURNAME
8 | YOURSTREET
9 | YOURCITY
10 | YOURCOUNTRY
11 |
12 | E-Mail Address: YOURMAIL@DOMAIN.COM
13 |
14 | ---
15 |
16 | #### Liability for Contents
17 |
18 | As service providers, we are liable for own contents of these websites according to Sec. 7, paragraph 1 German Telemedia Act (TMG). However, according to Sec. 8 to 10 German Telemedia Act (TMG), service providers are not obligated to permanently monitor submitted or stored information or to search for evidences that indicate illegal activities.
19 |
20 | Legal obligations to removing information or to blocking the use of information remain unchallenged. In this case, liability is only possible at the time of knowledge about a specific violation of law. Illegal contents will be removed immediately at the time we get knowledge of them.
21 |
22 | ---
23 |
24 | #### Liability for Links
25 |
26 | Our offer includes links to external third party websites. We have no influence on the contents of those websites, therefore we cannot guarantee for those contents. Providers or administrators of linked websites are always responsible for their own contents.
27 |
28 | The linked websites had been checked for possible violations of law at the time of the establishment of the link. Illegal contents were not detected at the time of the linking. A permanent monitoring of the contents of linked websites cannot be imposed without reasonable indications that there has been a violation of law. Illegal links will be removed immediately at the time we get knowledge of them.
29 |
30 | ---
31 |
32 | #### Copyright
33 |
34 | Contents and compilations published on these websites by the providers are subject to German copyright laws. Reproduction, editing, distribution as well as the use of any kind outside the scope of the copyright law require a written permission of the author or originator. Downloads and copies of these websites are permitted for private use only. The commercial use of our contents without permission of the originator is prohibited.
35 |
36 | Copyright laws of third parties are respected as long as the contents on these websites do not originate from the provider. Contributions of third parties on this site are indicated as such. However, if you notice any violations of copyright law, please inform us. Such contents will be removed immediately.
37 |
--------------------------------------------------------------------------------
/content/articles/my-first-article/index.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: "This is an exemplary article for the blog."
3 | description: "This description will be used for the article listing and search results on Google."
4 | date: "2021-05-28"
5 | banner:
6 | src: "../../images/kelly-sikkema-Hl3LUdyKRic-unsplash.jpg"
7 | alt: "First Markdown Post"
8 | caption: 'Photo by Florian Olivo'
9 | categories:
10 | - "Setup"
11 | - "Tutorial"
12 | keywords:
13 | - "Example"
14 | - "Gatsby"
15 | - "Markdown"
16 | - "Blog"
17 | ---
18 |
19 | ## Code block test
20 |
21 | ```css
22 | .AClass .Subtitle {
23 | margin: -0.5rem 0 0 0;
24 | font-weight: 700;
25 | font-size: 1.25rem;
26 | line-height: 1.5rem;
27 | }
28 |
29 | .AnotherClass p {
30 | font-size: 1.125rem;
31 | margin-bottom: 2rem;
32 | }
33 |
34 | .AThirdClass {
35 | display: flex;
36 | justify-content: flex-start;
37 | align-items: center;
38 | }
39 |
40 | @media (max-width: 768px) {
41 | .AClass {
42 | flex-direction: column;
43 | }
44 | .AnotherClass {
45 | display: block;
46 | }
47 | }
48 | ```
49 |
50 | Inline code: `print()`
51 |
52 | Lorem ipsum dolor sit amed Vel ut spiritday all cultural Lili Elbe lorem in sexuality Herstory sit lorem Ac Genderless homoflexible trans Carrie Fisher Transgender love family cross-dresser ac a ut Ac xe she ut Tina Anselmi woman Marina Abramovich Lesbians and Gays Support the Miners Ipsum Chimamanda Ngozi sed sit Equal movement gender ut est lorem Laura Jane Grace Emma Watson sem eu.
53 |
54 | **Maria Montessori vel sem in eu Leelah Alcorn** In eu Leelah Alcorn in Margaret Sanger future Martha Nussbaum eu gender non-conformity Family cross-dresser ac a ut representation drag queen Ac third wave Hannah Gadsby culture feminismus ac suffragette cisgender in a eu Ac a ut representation drag queen Out Lorem ac no means no f word sed Emmeline Pankhurst.
55 |
56 | ## Second Headline
57 |
58 | Est vel est appreciation Nadia Murad Basee Taha cross-dressing vel Ut mi sit ut eu id Samira Wiley sit vel sem Ut romance in gender studies ballroom Sit lorem ac no means no f word sed Emmeline Pankhurst Ac sorellanza In Lea Delaria in grrlpwr pansexual intersectional yas queen diritti id mi Sem Audre Lorde Sappho in sed et empowerment genderqueer intersex.
59 |
60 | .")
61 |
62 | Feminizmas eu Dian Fossey ac third wave notion supporting androgyny dui ut People a Sylvia Plath mi sex-positivity demisexual a equality suffragettes pronouns Vel est appreciation Nadia Murad Basee Taha cross-dressing vel Sustainability ut sit dui Lesbians and Gays Support the Miners local eu Hanna Gaby Odiele est queer Misty Copeland She ut Tina Anselmi woman Marina Abramovich Lesbians and Gays Support the Miners local Equal ac et ut romance in Second wave sit friendship grl pwr castro.
63 |
64 | ### Third Headline
65 |
66 | Vel sem Sed Roxane Gay Caitlin Moran Ace id Amelia Earhart Gloria Steinem Samira Wiley sit Amelia Earhart Gloria Steinem eu In et ac in Alexandria Ocasio-Cortez Emmy Noether a Bi-visibility Dance Simone de Beauvoir eu sem.
67 |
68 | #### Fourth Headline
69 |
70 | Alexandria Ocasio-Cortez Emmy Noether a Bi-visibility dui et voices Stonewall Inn sem et Ac pride month lorem et eu dui sit eu ut Eu ut Et in lorem id sed Id Kate Bornstein smash the patriarchy et et eu motivational ut In Chimamanda Ngozi sed sit strength.
71 |
72 | 
73 |
74 | Vel herstory Bossy sit ac xe she ut Tina Anselmi woman Marina Abramovich Spiritday all cultural Lili Elbe lorem in sexuality Transformation lgbt freedom et ac sem Sem we are everywhere Notion supporting androgyny dui ut dance Simone de Beauvoir eu sem sit Inge Schonöethal Feltrinelli female gaze ac Franca viola.
75 |
--------------------------------------------------------------------------------