tramway-landing 1.2.20 → 1.3
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 62eef85a9ae8e39a81586f911c559952e6dbd8ccef648d1e9907141678f79cc4
|
4
|
+
data.tar.gz: 267904745078f6bb221b7bf08724fe417b72ffe3a422632e8185592e28ca3007
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 02a149ef826544adb0426fd7d1750713211e33a20eeb2bce9b41f19a3cc9b130f2eebb232c521e745633b1881c996f518bd1cbde200d283082bd4732b5e001c2
|
7
|
+
data.tar.gz: b85a60f327af5a8b8d29335479b677d050bb9224416870996e7fef299139a52c07b263a485dafa6e4cde27e68b0328b9e180cb3a938db645fb2555386e2ef292
|
@@ -23,7 +23,7 @@
|
|
23
23
|
- other_blocks = @blocks - headers - footers
|
24
24
|
-# FIXME
|
25
25
|
= render "tramway/landing/blocks/block_types/header", block: headers.first
|
26
|
-
%main
|
26
|
+
%main.mt-5
|
27
27
|
.container
|
28
28
|
- other_blocks.each_with_index do |block, index|
|
29
29
|
= render "tramway/landing/blocks/block_types/#{block.model.block_type}", block: block
|
@@ -4,13 +4,17 @@
|
|
4
4
|
.row
|
5
5
|
.col-md-6
|
6
6
|
%h5.title
|
7
|
-
=
|
7
|
+
= @application.title
|
8
8
|
%p
|
9
|
-
=
|
9
|
+
= @application.tagline
|
10
10
|
.logo_collage.effect-parent
|
11
11
|
= yield :footer_logos
|
12
12
|
.col-md-6
|
13
13
|
= yield :footer_links
|
14
14
|
.footer-copyright
|
15
15
|
.container-fluid
|
16
|
-
|
16
|
+
- external_url = if @application.url.present?
|
17
|
+
- @application.url.include?('http') || @application.url.include?('https') ? @application.url : "http://#{@application.url}"
|
18
|
+
- else
|
19
|
+
- ''
|
20
|
+
= link_to copyright(@application&.found_date&.year || DateTime.now.year, @application.title), external_url
|