All Projects → Knochenmark → gatsby-starter-level-2

Knochenmark / gatsby-starter-level-2

Licence: MIT license
Gatsby Starter Portfolio - Level 2

Programming Languages

javascript
184084 projects - #8 most used programming language
stylus
462 projects

Projects that are alternatives of or similar to gatsby-starter-level-2

bartzalewski.com-v2
My 2nd portfolio website
Stars: ✭ 31 (-18.42%)
Mutual labels:  portfolio
CryptoTracker
Minimal yet powerful crypto-currency tracker UWP.
Stars: ✭ 50 (+31.58%)
Mutual labels:  portfolio
Portfolio
✨ A simple and responsive portfolio template.
Stars: ✭ 33 (-13.16%)
Mutual labels:  portfolio
rebalance
A portfolio rebalancing tool.
Stars: ✭ 24 (-36.84%)
Mutual labels:  portfolio
RiskPortfolios
Functions for the construction of risk-based portfolios
Stars: ✭ 43 (+13.16%)
Mutual labels:  portfolio
danestves.com
✨ My portfolio built with Remix, Tailwind, Prisma, and Fly.io.
Stars: ✭ 9 (-76.32%)
Mutual labels:  portfolio
CharlesCreativeContent
Thank You For Supporting me and the community I Support!
Stars: ✭ 46 (+21.05%)
Mutual labels:  portfolio
thalida.com
thalida.com
Stars: ✭ 27 (-28.95%)
Mutual labels:  portfolio
pr-www
Portfolio Report Website - the data source for Portfolio Performance
Stars: ✭ 50 (+31.58%)
Mutual labels:  portfolio
k3yss.github.io
Portfolio
Stars: ✭ 12 (-68.42%)
Mutual labels:  portfolio
datasciencefolio
A portfolio template for datascientists using reactjs
Stars: ✭ 103 (+171.05%)
Mutual labels:  portfolio
aryanvikash.com
kind Of portfolio web app written in NextJs 😂
Stars: ✭ 38 (+0%)
Mutual labels:  portfolio
JayantGoel001
JayantGoel001's profile with 74 stars ⭐ and 91 forks 🎉.
Stars: ✭ 74 (+94.74%)
Mutual labels:  portfolio
nuro.dev
🌿 Personal Portfolio
Stars: ✭ 260 (+584.21%)
Mutual labels:  portfolio
glassFolio
Developer Portfolio Template in Glassmorphism UI
Stars: ✭ 61 (+60.53%)
Mutual labels:  portfolio
vue-quasar-company-profile-website
Kudos - Company profile website made using Vue.js and Quasar Framework
Stars: ✭ 119 (+213.16%)
Mutual labels:  portfolio
academia-hugo
Academia is a Hugo resume theme. You can showcase your academic resume, publications and talks using this theme.
Stars: ✭ 165 (+334.21%)
Mutual labels:  portfolio
saakshaat.github.io
My personal website.
Stars: ✭ 25 (-34.21%)
Mutual labels:  portfolio
Portfolio
My portfolio (+ template) built using Next.js
Stars: ✭ 88 (+131.58%)
Mutual labels:  portfolio
simple-developer-portfolio-website
✈️ A simple portfolio for developers to showcase their skills and projects. Blog and tutorial at freeCodeCamp.
Stars: ✭ 265 (+597.37%)
Mutual labels:  portfolio

Build Status GitHub issues GitHub closed pull requests GitHub contributors GitHub top language

Level 2

Gatsby Starter Portfolio: Level 2

A minimalistic, responsive and easily configurable Gatsby starter that will help to bring your portfolio to the next level.

That's why we like to call our starter Level 2 or short LvL2. The starter comes with several prepared info sections for your portfolio that can be easily configured with the main Gatsby configuration files. For content creation we are using Markdown files with Frontmatter attributes that can be easily edited or created.

Now updated to Gatsby 3!

Table of Contents

Quick start

  1. Create a Gatsby site.

    Use the Gatsby CLI to create a new site, specifying the level-2 starter.

    # create a new Gatsby site using the level-2 starter
    gatsby new my-portfolio https://github.com/Knochenmark/gatsby-starter-level-2
  2. Start developing.

    Navigate into your new site’s directory and start it up.

    cd my-portfolio/
    gatsby develop
  3. Open the source code and start editing!

    Your site is now running at http://localhost:8000!

    Note: You'll also see a second link: http://localhost:8000/___graphql. This is a tool you can use to experiment with querying your data. Learn more about using this tool in the Gatsby tutorial.

    Open the my-portfolio directory in your code editor of choice and edit src/pages/index.js. Save your changes and the browser will update in real time!

Features

  • Responsive Layout
  • High configurability
  • Configurable Sections via Markdown
    • Hero
    • About
    • Featured Projects
    • Contact
  • Social Links
  • Styled Components with Emotion
  • Organized Projects by techs and Blog Posts by tags
  • Posts in Markdown
    • Syntax highlighting in code blocks
  • Pagination support
  • More to come!

Customize

Gatsby Configuration

To make it easy for you we made sure you can configure as much as possible with the gatsby-config.js already. All you have to do is change the relevant values. For reference you can find an overview of the config below:

siteMetadata: {
  title: 'Level 2',
  titleTemplate: '%s · Level 2',
  image: '/images/logo.png',
  author: 'Max Mustermann',
  description: 'Gatsby starter to quickly setup your portfolio and boost it to the next level.',
  url: 'https://knochenmark.github.io',
  paginationPageSize: 4, // Amount of posts displayed per listing page.
},

Icons

Under src/components/_config you will find further files that allow for configuration of social and navigation icons.

Navigation

To change or add further menu links you can adjust the maps in src/components/_config/menu-links.js. If you want to change the icons that are being used you just have to change the icon property to another solid icon from font-awesome. Please refer to Font Awsome Solid Icons for available icons.

Social

In src/components/_config/social-icon-list.js you are able to add further social links or edit the link property to point to your social profiles. Those social links are currently displayed in the header and footer. Feel free to reuse them where ever you like.

Change the Theme

In order to change the colors of the theme you can just change the values of the css variables in the src/styles/variables.styl file. Every color in the CSS is based on those css variables. This allows you to quickly apply a different theme of your choice.

body
  // Colors
  --bg-color #252839
  --bg-content-color #1b1d2a
  --title-color #fff
  --body-color #ced8de
  --primary-color #F1B631
  --secondary-color #f18731
  // Dimensions & Form
  --radius 6px
  --space 3.5rem
  --header-height 80px
  --content-width 860px
  // Transition Times
  --transition-fast 0.2s
  --transition-normal 0.4s
  --transition-slow 0.6s
  // Misc
  --bg-code rgba(0, 0, 0, 0.3)
  --border-color rgba(255, 255, 255, 0.1)

Content Creation

All content files and the information for the sections on the index page can be found in the content folder.

The folder contains subfolders for:

  • blog posts
  • projects
  • sections

Creating Blog Posts

In order to create a blog post you just have to add a markdown file under content/posts and move images that are used in your blog post into content/posts/images.

Frontmatter for blog posts

The frontmatter information for each blog post is structured as following:

Field Type Description Example
date Date Publishing Date 2020-05-31
title String Post Title 'Some title'
tags String[] List of Tags ['foo', 'bar']
published Boolean Is Published Flag true
cover_image String Path of the Cover Image ./images/my-image.jpg
canonical_url Boolean is Canonical Link Flag false
description String Post short description 'Some Description'

Followed by the actual Blog content written in Markdown.

Creating Projects

In order to create a project you create a markdown file under content/projects and move images that are used for your project into content/projects/images.

Frontmatter for projects

The frontmatter information for each blog post is structured as following:

Field Type Description Example
date Date Publishing Date 2020-05-31
title String Project Title 'Gatsby Portfolio'
techs String[] List of Tags ['React', 'Gatsby']
featured Boolean Is Featured Flag true
cover_image String? Path of the Cover Image ./images/my-image.jpg
repo_link String? URL to the repository 'https://github.com/facebook/react'
demo_link String? Post short description 'https://reactjs.org/'

Followed by the actual Project description in Markdown.

Editing Sections

Currently you can edit the following sections via Markdown files Hero, About, Cards & Contact. Those markdown files can be found in the following folder content/sections.

Each Markdown file contains frontmatter variables that can be edited.

Hint: The markdown content in those files can contain also external links if required.

Example by the Cards Section

The Card Section in our example portfolio is used to display features of the gatsby starter, but it can also be used to display any other arbitrary group of informations. Examples could be a card-grid of your most used technologies in your stack, your contributers or maybe a list of your customers. Go ahead and adjust the component to your own needs.

To edit the Cards Section you would only have to edit the markdown file. The frontmatter of the Cards component consists of a collection of card objects that looks as following:

cards:
  - label: Markdown
    icon: markdown
    prefix: fab
    description: All posts, projects and sections are editable via Markdown files.

The label and description are just Strings that you can change to your needs. The icon and prefix are specifics of fontawesome and have to be mapped accordingly. Also keep in mind that you have to make sure you've imported the used styles (for example fas and fab) in your library (see components/layout.js).

The possible font-awesome styles consist of: fas = Solid far = Regular fa. = Light fab = Brands

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].