diff options
Diffstat (limited to 'templates')
| -rw-r--r-- | templates/index.liquid | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/index.liquid b/templates/index.liquid index 292f2de..62eaf40 100644 --- a/templates/index.liquid +++ b/templates/index.liquid @@ -70,7 +70,7 @@ <span>{{ project.title }}</span> <span> <ul> - {% assign categories = project.NatureOfWork | split "\n" %} + {% assign categories = project.NatureOfWork | newline_to_br | split: '<br />' %} {% for category in categories %} <li> {{ category }} @@ -83,9 +83,9 @@ </span> <span> <ul> - {% for link in project.links %} + {% for link in project.press %} <li> - <a href="{{ link.url }}">{{ link.name }}</a> + <a href="{{ link.uri }}">{{ link.text }}</a> </li> {% endfor %} </ul> |
