Skip to content

fountainpen/portfolio-template

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Open Source, Fully customizable Web Developer Portfolio Template

Built with HTML, Flexbox (and soon to be a bit of JS)

To view a live demo, click here

This repo is an easily customizable personal portfolio template. Feel free to use it as-is or customize it as much as you want. I wanted to build a very simple template without any unnecessary bloat.


There are 8 customizable sections:

Jumbotron - Edit the h1 and p in the jumbotron-text div

<div class="jumbotron-text">
  <h1>Brandon Morelli</h1>
  <p>Full-Stack Web Developer in Boston, Ma.</p>
</div>

About - Edit the h2 and p, or add more, in the main-content div

<div class="main-content">
  <div class="content-header">
    <a class="anchor" name="about"></a>
    <h2>About</h2>
  </div>
  <div class="content-body">
    <p>text here</p>
    <p>text here</p>
  </div>
</div>

Experience - Experiences are organized in content-body div. There is an h4 and a p that you can edit.

          <div class="content-body">
            <div class="card">
              <div class="card-header">
                <h4>Company <span class="job-title">Job Title</span></h4>
              </div>
              <div class="card-content">
                <p>Paragraph text</p>
              </div>
            </div>

Education - Stored in a card div. Edit the h4 and p tags

            <div class="card">
              <div class="card-header">
                <h4>School <span class="job-title">Dates Attended</span></h4>
              </div>
              <div class="card-content">
                <p>Paragraph Text</p>
              </div>
            </div>

Project - Projects are stored in project-card divs. Edit the image, h4, and p

            <div class="project-card">
              <div class="project-image">
                <img src="http://placehold.it/250x350">
              </div>
              <div class="project-content">
                <h4>Project Name</h4>
                <p>Paragraph text</p>
                <a href="#">Link Text</a>
              </div>
            </div>

Skills - Simply list items. Add or remove li to add/remove skills.

            <ul class="ul-skills">
              <li class="li-skills">Javascript</li>
            </ul>

Contact - Simply cahnge the address to include your email address

<form method="POST" action="https://formspree.io/email@email.com">

Footer - content-body div with an editable p

          <div class="content-body">
            <p>Copyright YOUR NAME 2017</p>
          </div>

To do
  • Make responsive
  • Other effects?

Inspired by this template, I wanted to build a similiar template, but using Flexbox instead of bootstrap and jQuery.

About

A Web Developer Portfolio Template

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • HTML 75.9%
  • CSS 24.1%