diff --git a/app/views/layouts/_footer.html.haml b/app/views/layouts/_footer.html.haml index 5e728baaf..19f7ca38b 100644 --- a/app/views/layouts/_footer.html.haml +++ b/app/views/layouts/_footer.html.haml @@ -7,6 +7,8 @@ = link_to "License", "https://github.com/Growstuff/growstuff/blob/dev/LICENSE.txt" %li = link_to "Github", "https://github.com/Growstuff/" + %li + = link_to "Wiki", "http://wiki.growstuff.org" %li = link_to "Mailing list", "http://lists.growstuff.org/mailman/listinfo/discuss" %li diff --git a/spec/views/layouts/_footer_spec.rb b/spec/views/layouts/_footer_spec.rb index 2b8528039..79b76da68 100644 --- a/spec/views/layouts/_footer_spec.rb +++ b/spec/views/layouts/_footer_spec.rb @@ -10,6 +10,7 @@ describe 'layouts/_footer.html.haml', :type => "view" do rendered.should contain 'About' rendered.should contain 'License' rendered.should contain 'Github' + rendered.should contain 'Wiki' rendered.should contain 'Mailing list' rendered.should contain 'Community Guidelines' end