diff --git a/app/views/components/certificates.hbs b/app/views/components/certificates.hbs
new file mode 100644
index 0000000..d17a521
--- /dev/null
+++ b/app/views/components/certificates.hbs
@@ -0,0 +1,11 @@
+{{#if resume.certificates.length}}
+
+ {{> title value="Certificates"}}
+
+ {{#each resume.certificates}}
+
+ {{> section-header name=this.name }}
+
+ {{/each}}
+
+{{/if}}
diff --git a/app/views/resume.hbs b/app/views/resume.hbs
index 28757ba..a1b967c 100755
--- a/app/views/resume.hbs
+++ b/app/views/resume.hbs
@@ -25,6 +25,7 @@
{{> summary}}
{{> work }}
{{> volunteer }}
+ {{> certificates }}
{{> education }}
{{> awards }}
{{> publications }}