|
@@ -1,51 +1,16 @@
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
ROUTES = [
|
|
|
+ { path: '/' },
|
|
|
+ { path: '/nosotros.html' },
|
|
|
+ { path: '/sign', method: 'POST' },
|
|
|
+ { path: '/signup', method: 'POST' },
|
|
|
+ { path: '/2022/01/propuestas-constitucionales.html' },
|
|
|
+ { path: '/2022/02/presentacion-convencion-constitucional.html' },
|
|
|
+ { path: '/2022/09/rescate-proceso-constituyente.html' },
|
|
|
+ { path: '/2022/10/vulnerabilidades-informaticas-estado-chile.html' },
|
|
|
{
|
|
|
- path: '/',
|
|
|
- action: -> { render_with_layout('index.haml', title: 'Documentos') }
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/2022/01/propuestas-constitucionales.html',
|
|
|
- action: lambda do
|
|
|
- render_with_layout(
|
|
|
- '2022_01-propuestas_constitucionales.haml',
|
|
|
- title: 'Propuestas constitucionales'
|
|
|
- )
|
|
|
- end
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/2022/02/presentacion-convencion-constitucional.html',
|
|
|
- action: lambda do
|
|
|
- render_with_layout(
|
|
|
- '2022_02-presentacion_convencion_constitucional.haml',
|
|
|
- title: 'Presentación Convención Constitucional'
|
|
|
- )
|
|
|
- end
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/2022/09/rescate-proceso-constituyente.html',
|
|
|
- action: lambda do
|
|
|
- render_with_layout(
|
|
|
- '2022_09-rescate_proceso_constituyente.org',
|
|
|
- options: { setupfile: 'setup.org' }
|
|
|
- )
|
|
|
- end
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/2022/10/vulnerabilidades-informaticas-estado-chile.html',
|
|
|
- action: lambda do
|
|
|
- render_with_layout(
|
|
|
- '2022_10-vulnerabilidades.md',
|
|
|
- title: 'Sobre vulnerabilidades informáticas en el Estado de Chile'
|
|
|
- )
|
|
|
- end
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/nosotros.html',
|
|
|
- action: lambda do
|
|
|
- render_with_layout('nosotros.md', title: 'Acerca de nosotros')
|
|
|
- end
|
|
|
- },
|
|
|
- { path: '/sign', method: 'POST' }
|
|
|
+ path: '/aaron-swartz-2022',
|
|
|
+ action: -> { render_with_layout('2022/11/aaron-swartz.haml') }
|
|
|
+ }
|
|
|
].freeze
|