diff --git a/_includes/download-snapshot.html b/_includes/download-snapshot.html
index 9ddeb791f5634588dd74b04766e7dbcdd96a6c92..03973608f53e0fa1a06e6304dff68e794cf135b0 100644
--- a/_includes/download-snapshot.html
+++ b/_includes/download-snapshot.html
@@ -22,7 +22,7 @@
         {% assign snapshot_files = (site.static_files | where: "snapshot", "windows-exe" | sort: 'modified_time') | reverse %}
         {% for snapshot in snapshot_files %}
         {% if snapshot.extname == ".exe" %}
-        <div class="download_row" onclick="document.location = '{{ snapshot.path }}'">
+        <div class="download_row" onclick="document.location = '{{ snapshot.path }}'" onkeypress="document.location = '{{ snapshot.path }}'">
           <div class="download_cell_left"><i class="icon-document-download"></i>&nbsp;{{ snapshot.modified_time  | date: "%Y %b %d %R" }}</div>
           <div class="download_cell_right"><a href="#">{{ snapshot.name }}</a></div>
         </div>
@@ -35,7 +35,7 @@
         {% assign snapshot_files = (site.static_files | where: "snapshot", "windows-zip" | sort: 'modified_time') | reverse %}
         {% for snapshot in snapshot_files %}
         {% if snapshot.extname == ".zip" %}
-        <div class="download_row" onclick="document.location = '{{ snapshot.path }}'">
+        <div class="download_row" onclick="document.location = '{{ snapshot.path }}'" onkeypress="document.location = '{{ snapshot.path }}'">
           <div class="download_cell_left"><i class="icon-document-download"></i>&nbsp;{{ snapshot.modified_time  | date: "%Y %b %d %R" }}</div>
           <div class="download_cell_right"><a href="#">{{ snapshot.name }}</a></div>
         </div>
@@ -57,7 +57,7 @@
       {% assign snapshot_files = (site.static_files | where: "snapshot", "macosx" | sort: 'modified_time') | reverse %}
       {% for snapshot in snapshot_files %}
       {% if snapshot.extname == ".zip" %}
-      <div class="download_row" onclick="document.location = '{{ snapshot.path }}'">
+      <div class="download_row" onclick="document.location = '{{ snapshot.path }}'" onkeypress="document.location = '{{ snapshot.path }}'">
         <div class="download_cell_left"><i class="icon-document-download"></i>&nbsp;{{ snapshot.modified_time  | date: "%Y %b %d %R" }}</div>
         <div class="download_cell_right"><a href="#">{{ snapshot.name }}</a></div>
       </div>
@@ -83,7 +83,7 @@
       {% assign snapshot_files = (site.static_files | where: "snapshot", "source" | sort: 'modified_time') | reverse %}
       {% for snapshot in snapshot_files %}
       {% if snapshot.extname == ".xz" %}
-      <div class="download_row" onclick="document.location = '{{ snapshot.path }}'">
+      <div class="download_row" onclick="document.location = '{{ snapshot.path }}'" onkeypress="document.location = '{{ snapshot.path }}'">
         <div class="download_cell_left"><i class="icon-document-download"></i>&nbsp;{{ snapshot.modified_time  | date: "%Y %b %d %R" }}</div>
         <div class="download_cell_right"><a href="#">{{ snapshot.name }}</a></div>
       </div>
diff --git a/_includes/masthead.html b/_includes/masthead.html
index 26e0f9387c0168f86b7f1a09a932283c246f7e1c..584d1b462901c6eacaea286dc20dedeeb504455b 100644
--- a/_includes/masthead.html
+++ b/_includes/masthead.html
@@ -3,7 +3,7 @@
     <div class="masthead__menu">
       <nav id="site-nav" class="greedy-nav">
         <div class="dynare_masthead_image_container_load_hover"></div>
-        <div class="dynare_masthead_image_container" onclick="location.href='{{ '/' | relative_url }}'"></div>
+        <div class="dynare_masthead_image_container" onclick="location.href='{{ '/' | relative_url }}'" onkeypress="location.href='{{ '/' | relative_url }}'"></div>
         <ul class="visible-links" id="dynare_masthead_ul">
           {%- for link in site.data.navigation.main -%}
             {%- if link.url contains '://' -%}
diff --git a/index.md b/index.md
index 4ef1b4150e7fb628e47f8c9f57e65214c20bc75a..c7b0dfcc901bec3fe0678e386023a9ba8b365c01 100644
--- a/index.md
+++ b/index.md
@@ -63,7 +63,7 @@ We organize a Summer School and a Conference every year (applications every Spri
 </div>
 </div>
 {% for post in site.posts limit:1 %}
-<div class="dynare_home_page_post_box" onclick="location.href='{{ post.url }}';"><h3 class="dynare_home_page_post_title">{{ post.title }}</h3>
+<div class="dynare_home_page_post_box" onclick="location.href='{{ post.url }}';" onkeypress="location.href='{{ post.url }}';"><h3 class="dynare_home_page_post_title">{{ post.title }}</h3>
 <span class="dynare_home_page_date">{{ post.date | date_to_long_string }}</span>
 {{ post.excerpt }}
 </div>