diff --git a/_includes/header.html b/_includes/header.html index 12db919d..7a53235a 100644 --- a/_includes/header.html +++ b/_includes/header.html @@ -10,6 +10,7 @@
  • About
  • Blog
  • Classes
  • +
  • Projects
  • Dev
  • Team
  • @@ -29,6 +30,7 @@
  • About
  • Blog
  • Classes
  • +
  • Projects
  • Dev
  • Team
  • diff --git a/projects.html b/projects.html new file mode 100644 index 00000000..3d3c9f7f --- /dev/null +++ b/projects.html @@ -0,0 +1,96 @@ +--- +layout: default +title: "Dev & Software at Teach LA" +permalink: "/projects" +--- + +

    Our Projects

    + + + +

    +
    + {% assign finished = site.data.projects | where:"wip", "false" %} + {% for proj in finished %} +
    +
    +

    + {{ proj.name }} +

    +
    + {{proj.lang.full}} • + project + • + repo +
    +

    + {{proj.description}} +

    + {% if proj.lead %} +

    + Lead(s): + {% for lead in proj.lead %} + + {{lead.name}} + {% if forloop.last != true %},{% endif %} + {% endfor %} +

    + {% endif %} +
    + +
    + {% for tech in proj.tech %} + + {{tech}} + + {% endfor %} +
    +
    + {% endfor %} +
    + +

    Stuff that's in the works

    +
    + {% assign inProgress = site.data.projects | where:"wip", "true"%} + {% for proj in inProgress %} +
    +
    +

    + {{ proj.name }} +

    +
    + {{proj.lang.full}} • + {% if proj.link %} + project + • + {% endif %} + repo +
    +

    + {{proj.description}} +

    + {% if proj.lead %} +

    + Lead(s): + {% for lead in proj.lead %} + + {{lead.name}} + {% if forloop.last != true %},{% endif %} + {% endfor %} +

    + {% endif %} +
    + +
    + {% for tech in proj.tech %} + + {{tech}} + + {% endfor %} +
    +
    + {% endfor %} +
    + + +{% include contact-cta.html %} \ No newline at end of file diff --git a/team.html b/team.html index 9fe5c8d9..a65dda74 100644 --- a/team.html +++ b/team.html @@ -41,6 +41,7 @@