diff --git a/app/views/posts/partials/index/_related.html.erb b/app/views/posts/partials/index/_related.html.erb
index 9ec07248c..92fa24811 100644
--- a/app/views/posts/partials/index/_related.html.erb
+++ b/app/views/posts/partials/index/_related.html.erb
@@ -10,5 +10,7 @@
<% end %>
<%= link_to "Random post", random_posts_path(:tags => params[:tags]) %>
+
+ <%= link_to "Mobile version", m_posts_path(:tags => params[:tags]) %>
diff --git a/app/views/posts/partials/show/_options.html.erb b/app/views/posts/partials/show/_options.html.erb
index 66e5f9479..1462982df 100644
--- a/app/views/posts/partials/show/_options.html.erb
+++ b/app/views/posts/partials/show/_options.html.erb
@@ -49,6 +49,8 @@
<% if CurrentUser.is_admin? %>
<%= link_to "Expunge", expunge_moderator_post_post_path(:post_id => post.id), :remote => true, :method => :post, :id => "expunge", :confirm => "This will permanently delete this post (meaning the file will be deleted). Are you sure you want to delete this post?" %>
<% end %>
+
+ <%= link_to "Mobile version", m_post_path(post) %>
<% end %>
<% end %>