This is a lightweight portfolio starterkit built with Eleventy. It is geared towards designers, illustrators, architects, and any other individuals who are interested in sharing their work and activity.
The intended user may not know how to code but is interested in the tech behind their website, is willing to write in Markdown, and is happy to follow along with this documentation.
Visit portfolio-starter.sb-ph.com to check it out. The content and code in this repository drives the demo site.
- Features
- No-code setup
- Command line setup
- Using a custom domain
- Updates and backups
- Content reference
- Altering and extending your site
- Understated design with an eye towards accessibility [TODO]
- A deliberately basic codebase that encourages tinkering and customisation even for people unfamiliar with code
- Generates a static site; static sites tend to load a lot faster than database-driven websites and can be hosted for free
- Supports posts, projects, pages, a one-level menu, and RSS out-of-the-box
- Command line not required; you don’t have to use a code editor or the command line to edit or even deploy this website
“No-code” is a little bit of a misnomer. Your content files are technically written in code, but it is a very readable syntax called Markdown (more on this later). What we mean by “no-code” is that you won’t have to touch the command line, Git, or open a code editor on your computer.
GitHub is a platform that stores code. Your website code and content are going to live on GitHub. If you have an account already, go ahead and log in. If not, sign up for an account. The free individual account is sufficient.
Netlify and ZEIT are hosting providers that offer generous free tiers for people with static websites such as this. Netlify is perhaps a tiny bit more straightforward for the following steps and seems to be used by more Eleventy users, but they are both solid platforms. If you have an account with either of these platforms already, log in. If you don’t, sign up for one.
By clicking one of the buttons below, you will clone this repository (i.e. create a duplicate version that lives in your own GitHub account) and then deploy this new website to your static hosting.
Before proceeding, decide on a name for your repository. It should be something that is similar to the name of your site, but it should only include lowercase letters, numbers, and dashes. For example, the name of this repository is portfolio-starter
.
If you have a Netlify account, click this button and follow Netlify’s simple instructions to connect Netlify and GitHub:
If you have a ZEIT account, click the button below and then follow Zeit’s instructions:
Zeit’s instructions will walk you through how to install Zeit Now for GitHub so that it can create a repository for you and can deploy your changes. Give permission to all repositories when installing Zeit Now. Zeit should auto-detect that you are using Eleventy with settings as follows (you don’t need to worry about the development command):
Build command: npx @11ty/eleventy
Output directory: _site
When you have finished following the instructions above for Netlify or Zeit, you will be redirected to your website dashboard. This displays your default subdomain and other important information about your site. You’ll also receive some emails letting you know that the services are connected.
Zeit allows you to select the visibility of your repository when you set it up. Netlify, on the other hand, automatically creates a public repository. See the GitHub documentation if you want to adjust the visibility of your repository.
To edit or add content without the command line, you need to use GitHub’s interface to navigate your files within the /content
folder in your repository. See the content reference to learn more about the structure of the /content
folder and each of the files within it, particularly the global data file that includes your website title and URL.
To edit or delete an existing file, you must open the relevant file in GitHub and then click either the Edit button (the button with the pencil icon) or the Delete button (the button with the bin) in the upper-right corner above the page contents.
If you want to add a new page, you must navigate to the posts
, projects
, or pages
folder depending on what you want to add and then click the “Create new file” button near the top of the page. This will open a new editor page where you can add your filename and file contents. Since all text content is written in Markdown, the filename must end in md
(i.e. my-post-name.md
).
If you want to add media, you must navigate to the media
folder and then click the “Upload files” button near the top of the page. This will give you an area to upload one or more files. See the media guidance for tips on file types and sizes.
To save edits or additions made in GitHub, you must commit your changes using GitHub’s interface at the base of the page. If you hooked up Netlify or ZEIT in the previous step, a commit will also tell GitHub to automatically deploy your changes. For more on what a commit is, see the GitHub Glossary. When you commit an edit or an addition directly in GitHub, you can use the default commit message that is pre-filled and should commit directly to the master
branch (the default setting).
The command line setup instructions assume that you have familiarity with the command line, that you have version 8 or higher of Node.js installed on your computer, and that you have a GitHub account.
Clone repository locally into a named project folder by running git clone https://github.com/sb-ph/portfolio-starter.git my-website
and then change to the new project folder by running cd my-website
. Run npm install
to install the dependencies including Eleventy.
Run rm -rf .git
to remove the Git history for a fresh start, and then run git init
to initialise a new git repo. Commit all of your files to create a new master
branch, and then add your project to GitHub using the command line.
To build the website in to the gitignored /_site
directory, run npx @11ty/eleventy
. To spin up a server for local development or content editing, run npx @11ty/eleventy --serve
. This will make your site available at http://localhost:8080, and the site will automatically reload when you make any changes.
If you want to use Netlify or ZEIT, follow their documentation to get your repository hooked up to your hosting account for continuous deployment. If you want to use another hosting provider, you can find your static files in the /_site
directory after you generate a build.
To edit content locally, spin up a server by running npx @11ty/eleventy --serve
and then adjust the Markdown and JSON files within the /content
directory. If your site is hooked up to continuous deployment, make sure you commit your changes to the right branch (probably master
) otherwise they will not be deployed.
Netlify and ZEIT give you a default subdomain automatically when you deploy your website, so this is an optional step. If you want to use your own domain, you should follow their instructions to set this up. Read more about custom domains on ZEIT, or read more about custom domains on Netlify.
Both of these guides will walk you through how to set up your domain’s Domain Name System (DNS). Note that DNS can be delicate. The DNS records for your domain tell browsers where to find your website and tell email servers how to direct emails to you. Be sure to write down any existing DNS records before changing anything.
If you repoint the nameservers as part of the custom domain setup process and are already using your domain for email, you must add your MX records and any other records related to email to your new hosting provider before you repoint the nameservers. If you do not, your email may go down.
If you’re on an older version of Portfolio Starter and want to update it to a newer version, we recommend doing this manually by replacing all of the folders and files except for the /content
folder. You should back up your website before making any updates or major changes. Visit your repository homepage and click the green “Clone or download” button to download a zipped file of the entire repository, then store it somewhere safe.
All of the content lives in the /content
folder. By default, Portfolio Starter is filled with the content in use on the demo site.
The content includes the global data, Markdown files for each page, and media. It is important to format and organise each of these files in a particular way so that your site deploys without errors and looks as expected.
Certain metadata such as the site title and URL are used throughout the website. All of this global data is contained in the /content/_data/global.json
file.
The details in this file should be set when the website is first set up and then likely will not be touched again unless the website is moved or the domain changes. This is an example of the global.json
file:
{
"title": "Tortor Parturient Ridiculus",
"lang": "en",
"footer": "(c) Jane Doe, 2020",
"url": "https://tpr.com",
"author": {
"name": "Jane Doe",
"email": "[email protected]"
}
}
This is the only piece of content that must be written in JSON, a text format that is used to structure data. JSON syntax is very strict. All keys (i.e. title
) and all strings (i.e. My website
) are enclosed in double quotes, and all properties (i.e. "title": "My website"
) are separated by commas except for the last property. All JSON objects are enclosed in curly brackets {}
. Incorrect syntax in this file will result in an error, meaning your changes will not be deployed.
These are the properties in more detail.
Key | Format | Default | Description |
---|---|---|---|
author |
JSON object | - | A JSON object that includes the name and email address of the website author |
footer |
Markdown | a short credit | The footer text written in Markdown |
lang * |
text | en |
The IANA language tag that declares your website language |
title * |
text | - | The title of your website |
url * |
url | - | Your website URL |
The footer includes a short credit by default. Feel free to replace it with whatever text works best for you. This might include a copyright notice, a colophon, contact details or other salient information. The footer does not support line breaks.
All of the main content pages including the posts, projects, pages, homepage, 404 error page, blog, and RSS feed are written in Markdown. Markdown allows you to write using an easy-to-read, easy-to-write plain text format that can be converted to valid HTML. Visit the markdown-it website for a full list of formatting options including lists, links, headings, and more. You can also take a look at the source for this README file; it’s written in Markdown too!
All Markdown files end in the .md
extension, and this starterkit uses the rest of the filename to generate the page slug (the final part of a page’s URL).
Any folders or files that are preceded by an underscore _
will not be published. Because of that, you can use an underscore to create drafts such as /content/posts/_testing-a-draft.md
. However, it is critical to remember that your draft will be visible to others in GitHub if your repository is public.
Each Markdown file begins with YAML frontmatter. YAML is a plain text syntax that allows human-readable text to be formatted as structured data. Frontmatter is the text at the top of the file that is fenced in by three dashes on either side, like so:
---
layout: page
title: Contact
description: Get in touch with me via email or phone.
image: cloud-01.jpeg
---
The YAML frontmatter includes a series of properties—keys and values separated by a colon—that define page-specific metadata. Keys must always be written exactly as shown in this documentation. Writing Layout
instead of layout
for example will result in an error.
These are the basic YAML properties that should be used in the frontmatter on every page.
Key | Format | Default | Description |
---|---|---|---|
description |
text | - | Short description of the page contents |
eleventyNavigation |
YAML | - | A YAML object, described below |
image |
text | - | The filename of the image that should be used for social media cards |
layout * |
text | - | The page layout |
permalink |
text | various | The page permalink |
title * |
text | - | The page title |
The page title and layout are required on every Markdown file. The page layout determines how the content is displayed. When creating new pages, you should use the project
, post
, or page
layouts.
The description
property is highly recommended for all pages since it is used for social media cards and displayed in search engine results. It should be between 50 and 160 characters, and it should never be duplicated across different pages.
If using an image
for social media, refer to the documentation provided by the social media platforms for guidance about an appropriate image size. As a rule of thumb, a landscape-format 1200px wide JPG should be appropriate across most platforms.
The permalink
property allows you to set the URL for a page or to turn it off completely. The permalinks are always generated automatically, so you should rarely need to use this property.
The eleventyNavigation
property is slightly more complex. It tells the Eleventy Navigation Plugin what to put in the menu. This is an example of the property in use on the About page /content/pages/about.md
:
---
layout: default
title: About
eleventyNavigation:
key: About
order: 0
---
The key
sub-property tells Eleventy to add this page to the navigation with the text “About”. The order
sub-property tells Eleventy that it should come first in the navigation.
You can also add external links to the navigation, for example a link to your GitHub. See the /content/pages/github.md
page for an example with the following frontmatter:
If you want to add an external link to the navigation, you can create a new Markdown file (for example, /content/external.md
) with the below frontmatter:
---
eleventyNavigation:
key: GitHub ↗
order: 3
url: http://github.com/sb-ph/portfolio-starter
permalink: false
---
The key
sub-property tells Eleventy to add this page to the navigation with the text “GitHub ” (↗
is the HTML code for a northeast arrow). The order
sub-property is set to 3 so that it comes last in the menu, and the url
sub-property is set to the desired URL. The permalink
property is set to false so that this doesn’t publish a corresponding page on our website.
Pages are found in the /content/pages
folder.
A page’s layout
must be set to page
in the frontmatter. Pages support only the basic properties listed above.
Posts are found in the /content/posts
folder.
A post’s layout
must be set to post
in the frontmatter. Posts support the basic properties as well as the date
property. This is an example of a post’s frontmatter:
---
layout: post
title: Demo post
date: 2020-03-29 18:00:00
---
The date
property determines the publish date of the post and thus the order in the blog and RSS.
You can use the HTML comment <!--more-->
within your Markdown content to generate an excerpt for your posts like so:
Maecenas faucibus mollis interdum. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum.
<!--more-->
Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Donec ullamcorper nulla non metus auctor fringilla. Sed posuere consectetur est at lobortis.
If you use the more
comment, only the text preceding the comment will be displayed on the blog and a “Read more” link will be displayed after this excerpt.
Projects are found in the /content/projects
folder.
A project’s layout
must be set to project
in the frontmatter. Projects support the basic properties as well as the dateStart
, dateEnd
, and media
properties. This is an example of the frontmatter for a project page.
---
layout: project
title: Your project title
dateStart: 1988-02-01
dateEnd: 2001-03-01
media:
- type: image
filename: cloud-01.jpeg
size: md
alt: A cloud
caption: A collaboration with [Piper Haywood](https://piperhaywood.com)
- type: video
filename: ria-pacquee.mp4
controls: false
caption: A piece by [Ria Pacquée](http://riapacquee.com/)
---
And these are the project-specific properties in more detail:
Key | Format | Default | Description |
---|---|---|---|
dateEnd * |
YYYY-MM-DD |
- | The end date of your project, used for sorting purposes |
dateStart |
YYYY-MM-DD |
- | The start date of your project |
media |
YAML | - | A YAML list of media blocks, described below |
The media property is a strictly-formatted YAML list that can contain image and video blocks. The properties that apply to both images and videos are outlined below.
Key | Format | Default | Description |
---|---|---|---|
caption |
markdown | - | A caption describing your media |
filename * |
text | - | The filename of your media |
height |
integer | - | The height of your media in pixels |
width |
integer | - | The width of your media in pixels |
size |
text | lg |
The size that the media should be displayed; sm , md , or lg |
type * |
text | - | image or video |
Image blocks support the following additional properties:
Key | Format | Default | Description |
---|---|---|---|
alt * |
text | - | The alt text for your image |
featured |
boolean | false | Whether or not the image should be used to represent this project |
The featured
property is used to determine which image should be used to represent this project on the homepage. If multiple images are marked as featured, then the first one will be used.
Video blocks allow the following additional properties. Note that video autoplay is only supported in certain browsers and devices.
Key | Format | Default | Description |
---|---|---|---|
controls |
boolean | false | Whether or not the video controls should be displayed |
loop |
boolean | false | Whether or not the video should loop |
autoplay |
boolean | false | Whether or not the video should automatically play |
muted |
boolean | false | Whether or not the video should be muted |
The homepage is the /content/index.md
file.
The homepage’s layout
must be set to home
in the frontmatter. The homepage supports most basic properties, however the permalink
property must not be used.
The additional entries
property allows you to specify exactly which projects you want to appear on the homepage. If the entries
property is not filled out, then the homepage will automatically display all of the projects in order with the most recent first.
This is an example of the entries
property in use:
---
layout: home
entries:
- portfolio-starter
- sample-project-muybridge
- sample-project-optics
- sample-project-eames
- sample-project-letters
- sample-project-traffic-signs
---
The first featured
image for each project is shown. If no images are featured
, then the first image will be shown.
The blog page is the /content/posts.md
file.
The blog page’s layout
must be set to posts
in the frontmatter. The blog page supports the basic properties. Markdown written beneath the frontmatter is not displayed.
The 404 error page is the /content/404.md
file.
The 404 error page’s layout
must be set to error
in the frontmatter. The error page supports only the layout
and title
basic properties. The permalink
property must not be used.
The RSS page is the /content/rss.md
file.
The RSS page’s layout
must be set to feed
in the frontmatter. The RSS page supports only the layout
and title
basic properties. The permalink
property must not be used.
The RSS feed is automatically published to /feed.xml
, so for example https://yoursite.com/feed.xml
. If you want to add an RSS link in your navigation, see the basic properties guidance to add an external link.
All of the media is stored in the /content/media
folder.
Media files must be as small as possible to save space in your GitHub repository and your hosting. Read more about GitHub’s repository limits. Smaller media files will also load faster for your readers.
Small images should be around 800px wide, medium images should be around 1400px wide, and large images should be around 3000px wide. Images with large areas of flat colour may work best as PNGs. Images with more detail such as photography should be saved as JPGs.
The more images you add to a page, the longer it will take for that page to load. Be judicious about how many images you add to any one page.
As mentioned above, this is a deliberately basic codebase that welcomes tinkering.
Smaller customisations such as altering the CSS can be done without the command line by editing the CSS file directly in GitHub. More extensive customisations are best done by developing locally with the command line. Refer to the Eleventy documentation if you are interested in altering the Nunjucks layouts or snippets in /_includes
.
These are a few suggestions for altering and extending this site:
- Edit the CSS to change the fonts or background colours
- Edit the
/_includes/layouts/base.njk
layout to create a more complex footer - Add tags to the blog
- Add project attributes such as
client
orcategory
- Add a Projects page that displays a list of all projects
- Alter the templates to work with a content delivery network (CDN) such as
imgix
so that your media doesn’t live on GitHub - Add your projects to AirTable and use their API to populate your website
- Hook your site up to a content management system (CMS) like Forestry or Sanity
If you’re interested in our help making some modifications, just get in touch and we’ll discuss!