Skip to content

Commit 6172d25

Browse files
committed
Add research page
1 parent 077293f commit 6172d25

File tree

7 files changed

+69
-1
lines changed

7 files changed

+69
-1
lines changed

_data/en/strings.yml

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ title: Keycube
33
description: "The keycube is a kind of keyboard. A cubic device dedicated to text entry."
44
about: About
55
blog: Blog
6+
research: Research
67
contributors: Contributors
78
no_translation: This page is not available in English.
89
all: All topics

_data/fr/strings.yml

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ lang_name: Français
22
description: "Le keycube est une sorte de clavier. Un appareil cubique dédié à la saisie de texte."
33
about: À propos
44
blog: Blog
5+
research: Recherche
56
contributors: Personnes contributrices
67
no_translation: Cette page n'est pas disponible en Français.
78
all: Tous les sujets

_data/navigation.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
- name: about
22
url: /
33
- name: blog
4-
url: /blog/
4+
url: /blog/
5+
- name: research
6+
url: /research/

_data/research.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
- date: 2019
2+
title: Keycube is a Kind of Keyboard (k3)
3+
by: Damien Brun, Charles Gouin-Vallerand, Sébastien George
4+
in: "CHI EA '19: Extended Abstracts of the 2019 CHI Conference on Human Factors in Computing Systems"
5+
url: https://r-libre.teluq.ca/1691/2/INT034.pdf
6+
7+
- date: 2020
8+
title: "Keycube: Text Entry Evaluation with a Cubic Device"
9+
by: Damien Brun, Sébastien George, Charles Gouin-Vallerand
10+
in: "CHI EA '20: Extended Abstracts of the 2020 CHI Conference on Human Factors in Computing Systems"
11+
url: https://hal.science/hal-02942093v1/document
12+
13+
- date: 2021
14+
title: Concepting Personal Input Devices for Micro-Gravity
15+
by: Damien Brun, Çağlar Genç, Jonna Häkkilä
16+
in: "SpaceCHI: Human-Computer Interaction for Space Exploration (CHI 2021 Workshop)"
17+
url: https://lacris.ulapland.fi/ws/portalfiles/portal/16918906/SpaceCHI2021_Brun.pdf
18+
19+
- date: 2024
20+
title: Design and evaluation of a versatile text input device for virtual and immersive workspaces
21+
by: Damien Brun, Charles Gouin-Vallerand, Sébastien George
22+
in: "Human-Computer Interaction (Taylor & Francis)"
23+
url: https://www.tandfonline.com/doi/abs/10.1080/07370024.2024.2352705

_layouts/research.html

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
layout: default
3+
---
4+
5+
<header class="post-header">
6+
<h1 class="post-title">{{ site.data.strings.research | escape }}</h1>
7+
</header>
8+
9+
<div class="post-content">
10+
{{ content }}
11+
</div>
12+
13+
<ul class="post-list">
14+
{% assign research = site.data.research | sort: 'date' | reverse %}
15+
{% for publication in research %}
16+
<li>
17+
<span class="post-meta">{{ publication.date }} • {{ publication.by }}</span>
18+
<br/>{{ publication.in }}
19+
<h3>
20+
<a class="post-link" href="{{ publication.url }}">
21+
{{ publication.title | escape }}
22+
</a>
23+
</h3>
24+
25+
</li>
26+
{% endfor %}
27+
</ul>

research-fr.markdown

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
layout: research
3+
permalink: /research/
4+
lang: fr
5+
---
6+
7+
Les fonctionnalités du keycube s'appuient sur des expériences pratiques, des études approfondies et un ensemble de recherches publiées.

research.markdown

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
layout: research
3+
permalink: /research/
4+
lang: en
5+
---
6+
7+
Features of the keycube are informed by practical experiments, in-depth studies, and a body of published research

0 commit comments

Comments
 (0)