1.1.1 • Published 6 months ago

@arturthemaslov/gatsby-theme-intro-maslov v1.1.1

Weekly downloads
-
License
MIT
Repository
github
Last release
6 months ago

Version Downloads License

Intro - Personal branding theme for developers

Intro is an open source Gatsby theme built specially for developers. Tell your story by showing your skills, projects and career path.

This is heavily modified fork of original theme at link

Upgrades

  • New YAML files for education, ceritifications
  • Work, Education and certifications now in tab layout
  • Projects are sorted into tabs by new YAML property 'type'
  • Location div now has map overlay which is lazy-loaded
  • Profile skills and tools now have links
  • Project spheres are now spinning and reacting to mouse
  • Other CSS reactions to mouse movements to make site alive
  • New social link options for stackoverflow and spotify

🚀 Getting Started

Install theme & dependencies

mkdir my-site
cd my-site
yarn init -y
yarn add gatsby react react-dom @arturthemaslov/gatsby-theme-intro-maslov

Enable theme

Then add the theme to your gatsby-config.js.

module.exports = {
  plugins: [
    {
      resolve: "@arturthemaslov/gatsby-theme-intro-maslov",
      options: {
        theme: "classic",
      },
    },
  ],
}

Run your site

That's it, you can now run your site using

gatsby develop

This process will create content/ directory within your site with a sample data.

Edit content

You can change the website's content by editing .yaml files in content/ directory:

profile.yaml

Follow existing convention to provide your profile information, skills & tools.

Do not remove existing parameters from the file, as it may break the website.

projects.yaml

For each project you can provide:

ParameterValueIs required?
nameName of the projectyes
urlURL of the projectno
descriptionProject's descriptionno
statusEither in progress or liveno
tagsList of tagsno
iconEither github or websiteno
imagePath to the imageno

work-history.yaml

For each entry you can provide:

ParameterValueIs required?
companyName of the companyyes
periodStart / End dateno
positionYour position at the companyno
urlURL of the companyno

education-history.yaml

For each entry you can provide:

ParameterValueIs required?
schoolName of the schoolyes
periodStart / End dateno
levelYour gained degreeno
urlURL of the companyno

certifications.yaml

For each entry you can provide:

ParameterValueIs required?
issuerName of the issueryes
programName of the programyes
dateStart / End dateno
imageImage of certificationno
urlURL of the issuerno

social.yaml

List of your social media accounts. Please just fill the url parameter or leave it empty.

Do not add custom items to the list.

Enable email notifications

Contact form is integrated with Formspree. Any form submissions will be sent to your e-mail (set in profile.yaml).

You need to confirm your e-mail - to do it, please just send any message using the contact form. Shortly after doing it, you'll receive message from Formspree with an activation link.

Please refer to original theme docs for more info on customization

About

  • Intro. is a theme originally created by Wojciech Kocjan from Weeby Studio.
  • The theme has been initially launched in 2018 as a commercial project written in JavaScript. In 2020 it's been rewritten to Gatsby and open sourced.
  • Heavy modified by Artur Maslov in 2020.

Thank you for using it!