diff options
| -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 />' %} |
