Skip to content
Snippets Groups Projects
Commit f7edefe1 authored by Thomas Wood's avatar Thomas Wood
Browse files

Move research pages back to normal pages, so they can have headers.

parent 5a4b1e6d
No related branches found
No related tags found
No related merge requests found
......@@ -37,8 +37,7 @@ defaults:
layout: person
-
scope:
path: ""
type: research
path: "research"
values:
layout: research
......
......@@ -5,7 +5,8 @@ layout: default
<div class="lead">
{{ content }}
</div>
{% for item in site.research %}
{% assign research_pages = site.pages | where_exp: 'page', 'page.url contains "/research/"' %}
{% for item in research_pages %}
<a class="btn btn-primary btn-lg" href="{{ item.url }}">{{ item.title }}</a>
{% endfor %}
</div>
......
---
title: Research
menu: true
menu_order: 2
---
The main focus of our group is on program specification and verification for JavaScript and Concurrency.
{% for item in site.research %}
<h3><a href="{{ item.url }}">{{ item.title }}</a></h3>
{{ item.excerpt }}
<p><a href="{{ item.url }}">Read more...</a></p>
{% endfor %}
---
title: Concurrency
project_id: concurrency
menu: true
menu_order: 3
---
We develop formal reasoning techniques for concurrent programs, with a
......
---
title: JavaScript
project_id: javascript
menu: true
menu_order: 4
---
We study the mechanised specification of the JavaScript language
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment