Removes unnecessary pages

This commit is contained in:
decabeza
2018-11-15 11:52:57 +01:00
parent b364e0ec38
commit 46671fe447
4 changed files with 0 additions and 33 deletions

View File

@@ -1,11 +0,0 @@
<% content_for :canonical do %>
<%= render "shared/canonical", href: page_url("census_terms") %>
<% end %>
<div class="page row-full">
<div class="row">
<div class="text small-12 column">
<h2>Terminos de acceso al Padrón</h2>
</div>
</div>
</div>

View File

@@ -1,11 +0,0 @@
<% content_for :canonical do %>
<%= render "shared/canonical", href: page_url("general_terms") %>
<% end %>
<div class="row-full page">
<div class="row">
<div class="small-12 column">
<h1><%= t('pages.general_terms') %></h1>
</div>
</div>
</div>

View File

@@ -4,7 +4,6 @@ en:
title: Terms and conditions of use
subtitle: LEGAL NOTICE ON THE CONDITIONS OF USE, PRIVACY AND PROTECTION OF PERSONAL DATA OF THE OPEN GOVERNMENT PORTAL
description: Information page on the conditions of use, privacy and protection of personal data.
general_terms: Terms and Conditions
help:
title: "%{org} is a platform for citizen participation"
guide: "This guide explains what each of the %{org} sections are for and how they work."

View File

@@ -13,16 +13,6 @@ describe PagesController do
expect(response).to be_ok
end
it 'includes a general terms page' do
get :show, id: :general_terms
expect(response).to be_ok
end
it 'includes a terms page' do
get :show, id: :census_terms
expect(response).to be_ok
end
it 'includes a accessibility page' do
get :show, id: :accessibility
expect(response).to be_ok