diff --git a/templates/Includes/SlideItem.ss b/templates/Includes/SlideItem.ss
new file mode 100755
index 0000000..efda1ef
--- /dev/null
+++ b/templates/Includes/SlideItem.ss
@@ -0,0 +1,21 @@
+<% include SlideItem_media %>
+
+<% if $Content || $Headline || $CustomTitle || $Description || $SlideLinkID %>
+
+
+
+ <% if $Headline %>
+
+ $Headline
+
+ <% end_if %>
+
+ <% if $Content %>
+
$Content
+ <% else_if $Description %>
+
$Description
+ <% end_if %>
+
+
+
+<% end_if %>
diff --git a/templates/Includes/SlideItem_media.ss b/templates/Includes/SlideItem_media.ss
new file mode 100755
index 0000000..96eb291
--- /dev/null
+++ b/templates/Includes/SlideItem_media.ss
@@ -0,0 +1,26 @@
+<% if $Video || $Image %>
+ <% if $Video %>
+
+ $Video.EmbedHTML.RAW
+
+ <% else %>
+ <% if $Image || $ImageURL %>
+
+
+
+ <% end_if %>
+
+ <% if $SlideLinkID %>
+ <% with $SlideLink %>
+ <% include NavItem_link MenuTitle=$Title, Link=$LinkURL, LinkClass="stretched-link slide-link slide-link__media" %>
+ <% end_with %>
+ <% else_if $SlideLinkURL %>
+ <% include NavItem_link MenuTitle=$Headline, Link=$SlideLinkURL, LinkClass="stretched-link slide-link slide-link__media" %>
+ <% end_if %>
+
+ <% end_if %>
+<% end_if %>