This template is for creating a website to track designs created by a UXD team. Built on Jekyll using GitHub pages, this template will enable you to quickly get up and running with a basic set of sortable and filterable tables, patterns for adding designs links and sharing stories from any issue tracking system.
View the Changelog
View the Wiki
| This installation requires that you have Ruby, Node, Gem, Jekyll and Gulp installed. You can find a list of dependecies with versions here: Design Tracker Dependencies
- Fork this repository
- Rename as desired (we recommend with UX in the name)
- Clone to your local machine
- With Node, Gulp, Ruby, Gem and Jekyll already installed, run
npm run initialize
- Start with
jekyll serve
- Code away!
- Verify that you have the following installed (see our Dependencies:
- Node
- Gulp
- Gem
- Jekyll
- Run
npm run initialize
- commands as part of the script:
gem install bundler
bundle install
npm install
gulp
- this will copy the files from your npm_modules directory to their respective locations for the jekyll build process
jekyll build
- if this script fails, at the
jekyll build
step, runbundle exec jekyll build
- commands as part of the script:
- run
jekyll serve
- for viewing locally at http://localhost:4000
jekyll serve
to start your environment on port:4000
.
- If you are having issues with the site building, you can run a set of cleaning commands to reset your environment.
- If you have issues with the gem bundler, try to update your bundles with
bundle update
.
npm run reinstall
- This will clear out your node_modules folder, any vendor folders, reinstall all modules and copy vendor files back to their respective locations.
gulp cleanVendors
- This will remove just the vendor files that were copied over during the
gulp
process. - Run
gulp
to copy a clean set of vendor files back to your directories.
- This will remove just the vendor files that were copied over during the
The Design Tracker Template utilizes PatternFly as the basis for the UI, which is built off of Bootstrap (3.x).
- at this time, there are no plans to move the Design Tracker Template to use Bootstrap 4.x
The navigation is based off of Bootstrap's navbar, and can be found under _includes/nav.html
. Each link is configured using Jekyll's relative path scaffolding, along with an if page.navbar_active
check. This check will apply the .active
class to the navigation element, if the active page name matches the checked variable.
Example:
** this will apply the .active
class to the page if "home" is the page's title.
{% if page.navbar_active == "home" %} class="active"{% endif %}
- To replace the navbar icon, swap out the existing
icon.png
found underassets/img/icon.png
with your own image. - To replace the favicon, swap out the existing
favicon.png
found underassets/image/favicon.png
with your own image.
The Design Tracker utilizes Jekyll's built in Permalink solution in order to define simple and easy-to-use links. Each link is configured in the given pages front matter, with a relative path and permalink override. These, combined with the navbar_active
name and layout
callout, give each page their proper information.
---
layout: designs
title: Design Table Example 1
navbar_active: example1
relative_path: ../
permalink: designs/example1.html
---