diff options
| author | Jules Laplace <jules@okfoc.us> | 2016-04-04 17:55:31 -0400 |
|---|---|---|
| committer | Jules Laplace <jules@okfoc.us> | 2016-04-04 17:55:31 -0400 |
| commit | 02284e82d3965ce692e5e302b7941c78fa00eb19 (patch) | |
| tree | acedf1e061aea05d6e81b524479fc820714c09f6 | |
| parent | 51489db489d89148f3fa158d0b332cbd866cf75b (diff) | |
adding launch site button
| -rw-r--r-- | public/assets/ok.css | 8 | ||||
| -rw-r--r-- | templates/index.liquid | 4 |
2 files changed, 11 insertions, 1 deletions
diff --git a/public/assets/ok.css b/public/assets/ok.css index 0539a62..971be6c 100644 --- a/public/assets/ok.css +++ b/public/assets/ok.css @@ -684,6 +684,11 @@ nav { -webkit-column-count: 2; } +.projectLink { + display: block; + margin-top: 11px; +} + ul li { list-style-type: none; } @@ -714,6 +719,9 @@ ul li { width: 11px; padding: 1px 0 0 0; } + .projectLink { + margin-top: 17px; + } } diff --git a/templates/index.liquid b/templates/index.liquid index 56ba293..d38e8c6 100644 --- a/templates/index.liquid +++ b/templates/index.liquid @@ -148,7 +148,9 @@ <div class="five texts"> <span>{{ project.year }}</span> <span>{{ project.client }}</span> - <span>{% if project.alternateTitle %}{{ project.alternateTitle }}{% else %}{{ project.title }}{% endif %}</span> + <span>{% if project.alternateTitle %}{{ project.alternateTitle }}{% else %}{{ project.title }}{% endif %} + <a href="{{project.link}}" class="projectLink">Launch Site</a> + </span> <span> <ul> {% assign categories = project.NatureOfWork | newline_to_br | split: '<br />' %} |
