diff --git a/linkedin_profile/linkedin-user-page-language-item.tpl.php b/linkedin_profile/linkedin-user-page-language-item.tpl.php
new file mode 100644
index 0000000..179d91b
--- /dev/null
+++ b/linkedin_profile/linkedin-user-page-language-item.tpl.php
@@ -0,0 +1,19 @@
+<?php
+
+/**
+ * @file
+ * Template file for LinkedIn "Language" item as displayed on user page
+ * Copy it to your theme's folder if you want to override it.
+ *
+ * Be sure to check and comply to  http://developer.linkedin.com/docs/DOC-1091 before tweaking.
+ */
+$language == $variables['language'];
+?>
+<div class="linkedin-language">
+
+  <p>
+    <?php print $language['language']['name'] . ': ' . $language['proficiency']['name'] ?>
+  </p>
+
+</div>
+
diff --git a/linkedin_profile/linkedin-user-page-languages.tpl.php b/linkedin_profile/linkedin-user-page-languages.tpl.php
new file mode 100644
index 0000000..b8c44f3
--- /dev/null
+++ b/linkedin_profile/linkedin-user-page-languages.tpl.php
@@ -0,0 +1,19 @@
+<?php
+
+/**
+ * @file
+ * Template file for LinkedIn "Languages" items as displayed on user page
+ * Copy it to your theme's folder if you want to override it.
+ *
+ * Be sure to check and comply to  http://developer.linkedin.com/docs/DOC-1091 before tweaking.
+ */
+$languages == $variables['languages'];
+?>
+<div class="linkedin-languages">
+  <ul>
+<?php foreach ($languages as $language) : ?>
+      <li><?php print $language; ?></li>
+<?php endforeach; ?>
+  </ul>
+</div>
+
diff --git a/linkedin_profile/linkedin-user-page-skill-item.tpl.php b/linkedin_profile/linkedin-user-page-skill-item.tpl.php
new file mode 100644
index 0000000..5f3d089
--- /dev/null
+++ b/linkedin_profile/linkedin-user-page-skill-item.tpl.php
@@ -0,0 +1,19 @@
+<?php
+
+/**
+ * @file
+ * Template file for LinkedIn "Skill" item as displayed on user page
+ * Copy it to your theme's folder if you want to override it.
+ *
+ * Be sure to check and comply to  http://developer.linkedin.com/docs/DOC-1091 before tweaking.
+ */
+$skill == $variables['skill'];
+?>
+<div class="linkedin-skill">
+
+  <p>
+    <?php print $skill['skill']['name'] ?>
+  </p>
+
+</div>
+
diff --git a/linkedin_profile/linkedin-user-page-skills.tpl.php b/linkedin_profile/linkedin-user-page-skills.tpl.php
new file mode 100644
index 0000000..6a86391
--- /dev/null
+++ b/linkedin_profile/linkedin-user-page-skills.tpl.php
@@ -0,0 +1,19 @@
+<?php
+
+/**
+ * @file
+ * Template file for LinkedIn "Skills" items as displayed on user page
+ * Copy it to your theme's folder if you want to override it.
+ *
+ * Be sure to check and comply to  http://developer.linkedin.com/docs/DOC-1091 before tweaking.
+ */
+$skills == $variables['skills'];
+?>
+<div class="linkedin-skills">
+  <ul>
+<?php foreach ($skills as $skill) : ?>
+      <li><?php print $skill; ?></li>
+<?php endforeach; ?>
+  </ul>
+</div>
+
diff --git a/linkedin_profile/linkedin_profile.module b/linkedin_profile/linkedin_profile.module
index 9a984c3..51e1cae 100644
--- a/linkedin_profile/linkedin_profile.module
+++ b/linkedin_profile/linkedin_profile.module
@@ -103,6 +103,8 @@ function linkedin_profile_user_load($users) {
         $multiples = array(
           'positions' => 'position',
           'educations' => 'education',
+          'skills' => 'skill',
+          'languages' => 'language',
         );
         foreach ($profile as $key => $value) {
           $item = array(
@@ -208,6 +210,8 @@ function linkedin_profile_theme($existing, $type, $theme, $path) {
   $multiples = array(
     'positions' => 'position',
     'educations' => 'education',
+    'skills' => 'skill',
+    'languages' => 'language',
   );
   foreach ($multiples as $key => $val) {
     //Template files for multi-values structured fields
