mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 11:44:02 +00:00
Minor fixes
This commit is contained in:
parent
c052f59b0a
commit
9fb26f880d
5 changed files with 12 additions and 9 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -2,6 +2,8 @@
|
|||
config/application.rb
|
||||
config/config.yml
|
||||
config/secrets.yml
|
||||
config/master.key
|
||||
config/credentials.yml.enc
|
||||
/vendor/cache
|
||||
/vendor/cache-old
|
||||
/storage/*
|
||||
|
|
|
|||
|
|
@ -18,6 +18,7 @@ $navbar-default-link-hover-color: #000000;
|
|||
// Reset and dependencies
|
||||
@import "bootstrap/normalize";
|
||||
@import "bootstrap/print";
|
||||
@import "bootstrap/glyphicons";
|
||||
|
||||
// Core CSS
|
||||
@import "bootstrap/scaffolding";
|
||||
|
|
|
|||
|
|
@ -12,10 +12,10 @@
|
|||
= date_string(conference.start_date, conference.end_date)
|
||||
- if conference.venue
|
||||
%p
|
||||
>= conference.city
|
||||
%span>= conference.city
|
||||
- if conference.city and conference.country_name
|
||||
\/
|
||||
>= conference.country_name
|
||||
%span>= conference.country_name
|
||||
- unless conference.description.blank?
|
||||
%p
|
||||
= markdown(conference.description)
|
||||
|
|
|
|||
|
|
@ -8,22 +8,22 @@
|
|||
%i.fa-solid.fa-square-rss.fa-4x
|
||||
- if contact.facebook?
|
||||
= link_to "#{ contact.facebook }" do
|
||||
%i.fa-brand.fa-facebook.fa-4x
|
||||
%i.fa-brands.fa-facebook.fa-4x
|
||||
- if contact.twitter?
|
||||
= link_to "#{ contact.twitter }" do
|
||||
%i.fa-brand.fa-twitter.fa-4x
|
||||
%i.fa-brands.fa-twitter.fa-4x
|
||||
- if contact.instagram?
|
||||
= link_to "#{ contact.instagram }" do
|
||||
%i.fa-brand.fa-instagram.fa-4x
|
||||
%i.fa-brands.fa-instagram.fa-4x
|
||||
- if contact.googleplus?
|
||||
= link_to "#{ contact.googleplus }" do
|
||||
%i.fa-brand.fa-google-plus.fa-4x
|
||||
%i.fa-brands.fa-google-plus.fa-4x
|
||||
- if contact.mastodon?
|
||||
= link_to "#{ contact.mastodon }" do
|
||||
%i.fa-brand.fa-mastodon.fa-4x
|
||||
%i.fa-brands.fa-mastodon.fa-4x
|
||||
- if contact.youtube?
|
||||
= link_to "#{ contact.youtube }" do
|
||||
%i.fa-brand.fa-youtube.fa-4x
|
||||
%i.fa-brands.fa-youtube.fa-4x
|
||||
- if contact.email?
|
||||
= mail_to "#{ contact.email }" do
|
||||
%i.fa-solid.fa-envelope.fa-4x
|
||||
|
|
|
|||
|
|
@ -5,4 +5,4 @@
|
|||
id: "omniauth-#{provider}",
|
||||
title: "Your #{provider} login",
|
||||
method: :post do
|
||||
%i{class: "fa-brand fa-#{provider}"}
|
||||
%i{class: "fa-brands fa-#{provider}"}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue