spina-conferences-primer_theme 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/MIT-LICENSE +20 -0
- data/README.md +33 -0
- data/Rakefile +36 -0
- data/app/assets/config/spina_conferences_primer_theme_manifest.js +8 -0
- data/app/assets/javascripts/spina/conferences/primer_theme/application.js +8 -0
- data/app/assets/javascripts/spina/conferences/primer_theme/controllers/slideshow_controller.es6 +68 -0
- data/app/assets/stylesheets/spina/conferences/primer_theme/_admin.sass +4 -0
- data/app/assets/stylesheets/spina/conferences/primer_theme/_custom.sass +0 -0
- data/app/assets/stylesheets/spina/conferences/primer_theme/_github.sass +2 -0
- data/app/assets/stylesheets/spina/conferences/primer_theme/_primer.sass +4 -0
- data/app/assets/stylesheets/spina/conferences/primer_theme/_turbolinks.sass +3 -0
- data/app/assets/stylesheets/spina/conferences/primer_theme/application.sass +13 -0
- data/app/controllers/spina/conferences/primer_theme/application_controller.rb +14 -0
- data/app/controllers/spina/conferences/primer_theme/conferences_controller.rb +55 -0
- data/app/controllers/spina/conferences/primer_theme/presentations_controller.rb +39 -0
- data/app/helpers/spina/conferences/primer_theme/application_helper.rb +64 -0
- data/app/helpers/spina/conferences/primer_theme/asset_helper.rb +48 -0
- data/app/helpers/spina/conferences/primer_theme/navigations_helper.rb +24 -0
- data/app/views/conferences_primer_theme/pages/about.html.haml +17 -0
- data/app/views/conferences_primer_theme/pages/committee.html.haml +9 -0
- data/app/views/conferences_primer_theme/pages/homepage.html.haml +6 -0
- data/app/views/conferences_primer_theme/pages/information.html.haml +6 -0
- data/app/views/conferences_primer_theme/pages/show.html.haml +2 -0
- data/app/views/layouts/conferences_primer_theme/application.html.haml +5 -0
- data/app/views/layouts/spina/conferences/primer_theme/application.html.haml +36 -0
- data/app/views/layouts/spina/conferences/primer_theme/conferences.html.haml +4 -0
- data/app/views/layouts/spina/conferences/primer_theme/presentations.html.haml +4 -0
- data/app/views/spina/application/_cookies.html.haml +14 -0
- data/app/views/spina/application/_current_conference_alert.html.haml +4 -0
- data/app/views/spina/application/_footer.html.haml +24 -0
- data/app/views/spina/application/_image_collection.html.haml +19 -0
- data/app/views/spina/application/_list_item.html.haml +1 -0
- data/app/views/spina/application/_logo.html.haml +1 -0
- data/app/views/spina/application/_mobile_navigation_item.html.haml +2 -0
- data/app/views/spina/application/_navigation.html.haml +12 -0
- data/app/views/spina/application/_navigation_item.html.haml +1 -0
- data/app/views/spina/application/_text.html.haml +1 -0
- data/app/views/spina/conferences/primer_theme/conferences/_conference.html.haml +16 -0
- data/app/views/spina/conferences/primer_theme/conferences/_conference.ics.erb +3 -0
- data/app/views/spina/conferences/primer_theme/conferences/_event.html.haml +12 -0
- data/app/views/spina/conferences/primer_theme/conferences/_event.ics.erb +3 -0
- data/app/views/spina/conferences/primer_theme/conferences/_events.html.haml +15 -0
- data/app/views/spina/conferences/primer_theme/conferences/_information.html.haml +4 -0
- data/app/views/spina/conferences/primer_theme/conferences/_institution.html.haml +6 -0
- data/app/views/spina/conferences/primer_theme/conferences/_institution_logo.html.haml +3 -0
- data/app/views/spina/conferences/primer_theme/conferences/_presentation.html.haml +14 -0
- data/app/views/spina/conferences/primer_theme/conferences/_presentation.ics.erb +3 -0
- data/app/views/spina/conferences/primer_theme/conferences/_presentation_type.html.haml +6 -0
- data/app/views/spina/conferences/primer_theme/conferences/_presentations.html.haml +29 -0
- data/app/views/spina/conferences/primer_theme/conferences/_sponsor.html.haml +9 -0
- data/app/views/spina/conferences/primer_theme/conferences/_sponsors.html.haml +6 -0
- data/app/views/spina/conferences/primer_theme/conferences/_tab.html.haml +1 -0
- data/app/views/spina/conferences/primer_theme/conferences/index.html.haml +21 -0
- data/app/views/spina/conferences/primer_theme/conferences/index.ics.erb +3 -0
- data/app/views/spina/conferences/primer_theme/conferences/show.html.haml +67 -0
- data/app/views/spina/conferences/primer_theme/conferences/show.ics.erb +5 -0
- data/app/views/spina/conferences/primer_theme/presentations/_abstract.html.haml +1 -0
- data/app/views/spina/conferences/primer_theme/presentations/_attachment.html.haml +6 -0
- data/app/views/spina/conferences/primer_theme/presentations/_attachments.html.haml +4 -0
- data/app/views/spina/conferences/primer_theme/presentations/show.html.haml +16 -0
- data/app/views/spina/pages/_committee_bio.html.haml +29 -0
- data/app/views/spina/pages/_committee_bios.html.haml +5 -0
- data/app/views/spina/pages/_constitution.html.haml +11 -0
- data/app/views/spina/pages/_contact.html.haml +4 -0
- data/app/views/spina/pages/_homepage_content.html.haml +15 -0
- data/app/views/spina/pages/_jumbotron.html.haml +2 -0
- data/app/views/spina/pages/_minutes.html.haml +8 -0
- data/app/views/spina/pages/_minutes_entry.html.haml +11 -0
- data/app/views/spina/pages/_partner_societies.html.haml +9 -0
- data/app/views/spina/pages/_partner_society.html.haml +25 -0
- data/config/initializers/assets.rb +13 -0
- data/config/initializers/themes/conferences_primer_theme.rb +247 -0
- data/config/locales/en.yml +149 -0
- data/config/routes.rb +11 -0
- data/lib/spina/conferences/primer_theme.rb +17 -0
- data/lib/spina/conferences/primer_theme/breadcrumbs/builder.rb +34 -0
- data/lib/spina/conferences/primer_theme/engine.rb +13 -0
- data/lib/spina/conferences/primer_theme/version.rb +9 -0
- data/lib/tasks/spina/conferences/primer_theme_tasks.rake +6 -0
- metadata +388 -0
data/config/routes.rb
ADDED
@@ -0,0 +1,11 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
Spina::Engine.routes.draw do
|
4
|
+
namespace :frontend, path: 'conferences', module: 'conferences/primer_theme' do
|
5
|
+
resources :conferences, only: %i[index show] do
|
6
|
+
resources :presentations, only: [:show]
|
7
|
+
end
|
8
|
+
resources :presentations, only: [:show]
|
9
|
+
get 'cookies-info', controller: 'application'
|
10
|
+
end
|
11
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'spina'
|
4
|
+
require 'spina/conferences/primer_theme/engine'
|
5
|
+
require 'spina/conferences/primer_theme/breadcrumbs/builder'
|
6
|
+
require 'spina/admin/conferences'
|
7
|
+
require 'primer/view_components'
|
8
|
+
require 'icalendar'
|
9
|
+
require 'octicons_helper'
|
10
|
+
|
11
|
+
module Spina
|
12
|
+
module Conferences
|
13
|
+
module PrimerTheme
|
14
|
+
# Your code goes here...
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
@@ -0,0 +1,34 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Spina
|
4
|
+
module Conferences
|
5
|
+
module PrimerTheme
|
6
|
+
# Breadcrumbs for the frontend.
|
7
|
+
module Breadcrumbs
|
8
|
+
# Custom builder using Primer breadcrumbs.
|
9
|
+
class Builder < BreadcrumbsOnRails::Breadcrumbs::Builder
|
10
|
+
def render
|
11
|
+
@context.render ::Primer::BreadcrumbComponent.new(mb: 4) do |component|
|
12
|
+
@context.safe_join(render_elements(component, @elements), "\n")
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
private
|
17
|
+
|
18
|
+
def render_elements(component, elements)
|
19
|
+
elements.collect { |element| render_element(component, element) }
|
20
|
+
end
|
21
|
+
|
22
|
+
def render_element(component, element)
|
23
|
+
url = compute_path(element)
|
24
|
+
if @context.current_page? url
|
25
|
+
component.slot(:item, selected: true, **element.options) { compute_name(element) }
|
26
|
+
else
|
27
|
+
component.slot(:item, href: compute_path(element), **element.options) { compute_name(element) }
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
@@ -0,0 +1,13 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Spina
|
4
|
+
module Conferences
|
5
|
+
module PrimerTheme
|
6
|
+
class Engine < ::Rails::Engine
|
7
|
+
config.to_prepare do
|
8
|
+
::Spina::PagesController.helper 'spina/conferences/primer_theme/application'
|
9
|
+
end
|
10
|
+
end
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
metadata
ADDED
@@ -0,0 +1,388 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: spina-conferences-primer_theme
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.2
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Justin Malčić
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2020-10-31 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: babel-transpiler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0.7'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0.7'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: icalendar
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '2.5'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '2.5'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: image_processing
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '1.9'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '1.9'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: primer_view_components
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - '='
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: 0.0.10
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - '='
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: 0.0.10
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: rails
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: 6.0.2
|
76
|
+
type: :runtime
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: 6.0.2
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: spina
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '1.1'
|
90
|
+
type: :runtime
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - "~>"
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '1.1'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: spina-admin-conferences
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - "~>"
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: 1.3.3
|
104
|
+
type: :runtime
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - "~>"
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: 1.3.3
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: capybara
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - "~>"
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '3.33'
|
118
|
+
type: :development
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - "~>"
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: '3.33'
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: dotenv-rails
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
128
|
+
requirements:
|
129
|
+
- - "~>"
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: '2.7'
|
132
|
+
type: :development
|
133
|
+
prerelease: false
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
135
|
+
requirements:
|
136
|
+
- - "~>"
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
version: '2.7'
|
139
|
+
- !ruby/object:Gem::Dependency
|
140
|
+
name: minitest-rails
|
141
|
+
requirement: !ruby/object:Gem::Requirement
|
142
|
+
requirements:
|
143
|
+
- - "~>"
|
144
|
+
- !ruby/object:Gem::Version
|
145
|
+
version: '6.0'
|
146
|
+
type: :development
|
147
|
+
prerelease: false
|
148
|
+
version_requirements: !ruby/object:Gem::Requirement
|
149
|
+
requirements:
|
150
|
+
- - "~>"
|
151
|
+
- !ruby/object:Gem::Version
|
152
|
+
version: '6.0'
|
153
|
+
- !ruby/object:Gem::Dependency
|
154
|
+
name: minitest-reporters
|
155
|
+
requirement: !ruby/object:Gem::Requirement
|
156
|
+
requirements:
|
157
|
+
- - "~>"
|
158
|
+
- !ruby/object:Gem::Version
|
159
|
+
version: '1.4'
|
160
|
+
type: :development
|
161
|
+
prerelease: false
|
162
|
+
version_requirements: !ruby/object:Gem::Requirement
|
163
|
+
requirements:
|
164
|
+
- - "~>"
|
165
|
+
- !ruby/object:Gem::Version
|
166
|
+
version: '1.4'
|
167
|
+
- !ruby/object:Gem::Dependency
|
168
|
+
name: puma
|
169
|
+
requirement: !ruby/object:Gem::Requirement
|
170
|
+
requirements:
|
171
|
+
- - "~>"
|
172
|
+
- !ruby/object:Gem::Version
|
173
|
+
version: '5.0'
|
174
|
+
type: :development
|
175
|
+
prerelease: false
|
176
|
+
version_requirements: !ruby/object:Gem::Requirement
|
177
|
+
requirements:
|
178
|
+
- - "~>"
|
179
|
+
- !ruby/object:Gem::Version
|
180
|
+
version: '5.0'
|
181
|
+
- !ruby/object:Gem::Dependency
|
182
|
+
name: rubocop
|
183
|
+
requirement: !ruby/object:Gem::Requirement
|
184
|
+
requirements:
|
185
|
+
- - "~>"
|
186
|
+
- !ruby/object:Gem::Version
|
187
|
+
version: '1.0'
|
188
|
+
type: :development
|
189
|
+
prerelease: false
|
190
|
+
version_requirements: !ruby/object:Gem::Requirement
|
191
|
+
requirements:
|
192
|
+
- - "~>"
|
193
|
+
- !ruby/object:Gem::Version
|
194
|
+
version: '1.0'
|
195
|
+
- !ruby/object:Gem::Dependency
|
196
|
+
name: rubocop-performance
|
197
|
+
requirement: !ruby/object:Gem::Requirement
|
198
|
+
requirements:
|
199
|
+
- - "~>"
|
200
|
+
- !ruby/object:Gem::Version
|
201
|
+
version: '1.8'
|
202
|
+
type: :development
|
203
|
+
prerelease: false
|
204
|
+
version_requirements: !ruby/object:Gem::Requirement
|
205
|
+
requirements:
|
206
|
+
- - "~>"
|
207
|
+
- !ruby/object:Gem::Version
|
208
|
+
version: '1.8'
|
209
|
+
- !ruby/object:Gem::Dependency
|
210
|
+
name: rubocop-rails
|
211
|
+
requirement: !ruby/object:Gem::Requirement
|
212
|
+
requirements:
|
213
|
+
- - "~>"
|
214
|
+
- !ruby/object:Gem::Version
|
215
|
+
version: '2.8'
|
216
|
+
type: :development
|
217
|
+
prerelease: false
|
218
|
+
version_requirements: !ruby/object:Gem::Requirement
|
219
|
+
requirements:
|
220
|
+
- - "~>"
|
221
|
+
- !ruby/object:Gem::Version
|
222
|
+
version: '2.8'
|
223
|
+
- !ruby/object:Gem::Dependency
|
224
|
+
name: selenium-webdriver
|
225
|
+
requirement: !ruby/object:Gem::Requirement
|
226
|
+
requirements:
|
227
|
+
- - "~>"
|
228
|
+
- !ruby/object:Gem::Version
|
229
|
+
version: '3.142'
|
230
|
+
type: :development
|
231
|
+
prerelease: false
|
232
|
+
version_requirements: !ruby/object:Gem::Requirement
|
233
|
+
requirements:
|
234
|
+
- - "~>"
|
235
|
+
- !ruby/object:Gem::Version
|
236
|
+
version: '3.142'
|
237
|
+
- !ruby/object:Gem::Dependency
|
238
|
+
name: simplecov
|
239
|
+
requirement: !ruby/object:Gem::Requirement
|
240
|
+
requirements:
|
241
|
+
- - "~>"
|
242
|
+
- !ruby/object:Gem::Version
|
243
|
+
version: '0.19'
|
244
|
+
type: :development
|
245
|
+
prerelease: false
|
246
|
+
version_requirements: !ruby/object:Gem::Requirement
|
247
|
+
requirements:
|
248
|
+
- - "~>"
|
249
|
+
- !ruby/object:Gem::Version
|
250
|
+
version: '0.19'
|
251
|
+
- !ruby/object:Gem::Dependency
|
252
|
+
name: web-console
|
253
|
+
requirement: !ruby/object:Gem::Requirement
|
254
|
+
requirements:
|
255
|
+
- - "~>"
|
256
|
+
- !ruby/object:Gem::Version
|
257
|
+
version: '4.0'
|
258
|
+
type: :development
|
259
|
+
prerelease: false
|
260
|
+
version_requirements: !ruby/object:Gem::Requirement
|
261
|
+
requirements:
|
262
|
+
- - "~>"
|
263
|
+
- !ruby/object:Gem::Version
|
264
|
+
version: '4.0'
|
265
|
+
- !ruby/object:Gem::Dependency
|
266
|
+
name: webdrivers
|
267
|
+
requirement: !ruby/object:Gem::Requirement
|
268
|
+
requirements:
|
269
|
+
- - "~>"
|
270
|
+
- !ruby/object:Gem::Version
|
271
|
+
version: '4.4'
|
272
|
+
type: :development
|
273
|
+
prerelease: false
|
274
|
+
version_requirements: !ruby/object:Gem::Requirement
|
275
|
+
requirements:
|
276
|
+
- - "~>"
|
277
|
+
- !ruby/object:Gem::Version
|
278
|
+
version: '4.4'
|
279
|
+
description: Frontend for Spina::Admin::Conferences plugin, based on Primer.
|
280
|
+
email:
|
281
|
+
- j.malcic@me.com
|
282
|
+
executables: []
|
283
|
+
extensions: []
|
284
|
+
extra_rdoc_files: []
|
285
|
+
files:
|
286
|
+
- MIT-LICENSE
|
287
|
+
- README.md
|
288
|
+
- Rakefile
|
289
|
+
- app/assets/config/spina_conferences_primer_theme_manifest.js
|
290
|
+
- app/assets/javascripts/spina/conferences/primer_theme/application.js
|
291
|
+
- app/assets/javascripts/spina/conferences/primer_theme/controllers/slideshow_controller.es6
|
292
|
+
- app/assets/stylesheets/spina/conferences/primer_theme/_admin.sass
|
293
|
+
- app/assets/stylesheets/spina/conferences/primer_theme/_custom.sass
|
294
|
+
- app/assets/stylesheets/spina/conferences/primer_theme/_github.sass
|
295
|
+
- app/assets/stylesheets/spina/conferences/primer_theme/_primer.sass
|
296
|
+
- app/assets/stylesheets/spina/conferences/primer_theme/_turbolinks.sass
|
297
|
+
- app/assets/stylesheets/spina/conferences/primer_theme/application.sass
|
298
|
+
- app/controllers/spina/conferences/primer_theme/application_controller.rb
|
299
|
+
- app/controllers/spina/conferences/primer_theme/conferences_controller.rb
|
300
|
+
- app/controllers/spina/conferences/primer_theme/presentations_controller.rb
|
301
|
+
- app/helpers/spina/conferences/primer_theme/application_helper.rb
|
302
|
+
- app/helpers/spina/conferences/primer_theme/asset_helper.rb
|
303
|
+
- app/helpers/spina/conferences/primer_theme/navigations_helper.rb
|
304
|
+
- app/views/conferences_primer_theme/pages/about.html.haml
|
305
|
+
- app/views/conferences_primer_theme/pages/committee.html.haml
|
306
|
+
- app/views/conferences_primer_theme/pages/homepage.html.haml
|
307
|
+
- app/views/conferences_primer_theme/pages/information.html.haml
|
308
|
+
- app/views/conferences_primer_theme/pages/show.html.haml
|
309
|
+
- app/views/layouts/conferences_primer_theme/application.html.haml
|
310
|
+
- app/views/layouts/spina/conferences/primer_theme/application.html.haml
|
311
|
+
- app/views/layouts/spina/conferences/primer_theme/conferences.html.haml
|
312
|
+
- app/views/layouts/spina/conferences/primer_theme/presentations.html.haml
|
313
|
+
- app/views/spina/application/_cookies.html.haml
|
314
|
+
- app/views/spina/application/_current_conference_alert.html.haml
|
315
|
+
- app/views/spina/application/_footer.html.haml
|
316
|
+
- app/views/spina/application/_image_collection.html.haml
|
317
|
+
- app/views/spina/application/_list_item.html.haml
|
318
|
+
- app/views/spina/application/_logo.html.haml
|
319
|
+
- app/views/spina/application/_mobile_navigation_item.html.haml
|
320
|
+
- app/views/spina/application/_navigation.html.haml
|
321
|
+
- app/views/spina/application/_navigation_item.html.haml
|
322
|
+
- app/views/spina/application/_text.html.haml
|
323
|
+
- app/views/spina/conferences/primer_theme/conferences/_conference.html.haml
|
324
|
+
- app/views/spina/conferences/primer_theme/conferences/_conference.ics.erb
|
325
|
+
- app/views/spina/conferences/primer_theme/conferences/_event.html.haml
|
326
|
+
- app/views/spina/conferences/primer_theme/conferences/_event.ics.erb
|
327
|
+
- app/views/spina/conferences/primer_theme/conferences/_events.html.haml
|
328
|
+
- app/views/spina/conferences/primer_theme/conferences/_information.html.haml
|
329
|
+
- app/views/spina/conferences/primer_theme/conferences/_institution.html.haml
|
330
|
+
- app/views/spina/conferences/primer_theme/conferences/_institution_logo.html.haml
|
331
|
+
- app/views/spina/conferences/primer_theme/conferences/_presentation.html.haml
|
332
|
+
- app/views/spina/conferences/primer_theme/conferences/_presentation.ics.erb
|
333
|
+
- app/views/spina/conferences/primer_theme/conferences/_presentation_type.html.haml
|
334
|
+
- app/views/spina/conferences/primer_theme/conferences/_presentations.html.haml
|
335
|
+
- app/views/spina/conferences/primer_theme/conferences/_sponsor.html.haml
|
336
|
+
- app/views/spina/conferences/primer_theme/conferences/_sponsors.html.haml
|
337
|
+
- app/views/spina/conferences/primer_theme/conferences/_tab.html.haml
|
338
|
+
- app/views/spina/conferences/primer_theme/conferences/index.html.haml
|
339
|
+
- app/views/spina/conferences/primer_theme/conferences/index.ics.erb
|
340
|
+
- app/views/spina/conferences/primer_theme/conferences/show.html.haml
|
341
|
+
- app/views/spina/conferences/primer_theme/conferences/show.ics.erb
|
342
|
+
- app/views/spina/conferences/primer_theme/presentations/_abstract.html.haml
|
343
|
+
- app/views/spina/conferences/primer_theme/presentations/_attachment.html.haml
|
344
|
+
- app/views/spina/conferences/primer_theme/presentations/_attachments.html.haml
|
345
|
+
- app/views/spina/conferences/primer_theme/presentations/show.html.haml
|
346
|
+
- app/views/spina/pages/_committee_bio.html.haml
|
347
|
+
- app/views/spina/pages/_committee_bios.html.haml
|
348
|
+
- app/views/spina/pages/_constitution.html.haml
|
349
|
+
- app/views/spina/pages/_contact.html.haml
|
350
|
+
- app/views/spina/pages/_homepage_content.html.haml
|
351
|
+
- app/views/spina/pages/_jumbotron.html.haml
|
352
|
+
- app/views/spina/pages/_minutes.html.haml
|
353
|
+
- app/views/spina/pages/_minutes_entry.html.haml
|
354
|
+
- app/views/spina/pages/_partner_societies.html.haml
|
355
|
+
- app/views/spina/pages/_partner_society.html.haml
|
356
|
+
- config/initializers/assets.rb
|
357
|
+
- config/initializers/themes/conferences_primer_theme.rb
|
358
|
+
- config/locales/en.yml
|
359
|
+
- config/routes.rb
|
360
|
+
- lib/spina/conferences/primer_theme.rb
|
361
|
+
- lib/spina/conferences/primer_theme/breadcrumbs/builder.rb
|
362
|
+
- lib/spina/conferences/primer_theme/engine.rb
|
363
|
+
- lib/spina/conferences/primer_theme/version.rb
|
364
|
+
- lib/tasks/spina/conferences/primer_theme_tasks.rake
|
365
|
+
homepage: https://jmalcic.github.io/projects/spina-conferences/primer-theme
|
366
|
+
licenses:
|
367
|
+
- MIT
|
368
|
+
metadata: {}
|
369
|
+
post_install_message:
|
370
|
+
rdoc_options: []
|
371
|
+
require_paths:
|
372
|
+
- lib
|
373
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
374
|
+
requirements:
|
375
|
+
- - "~>"
|
376
|
+
- !ruby/object:Gem::Version
|
377
|
+
version: '2.7'
|
378
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
379
|
+
requirements:
|
380
|
+
- - ">="
|
381
|
+
- !ruby/object:Gem::Version
|
382
|
+
version: '0'
|
383
|
+
requirements: []
|
384
|
+
rubygems_version: 3.0.3
|
385
|
+
signing_key:
|
386
|
+
specification_version: 4
|
387
|
+
summary: Spina::Admin::Conferences frontend theme.
|
388
|
+
test_files: []
|