Retrospring/app/views/static/about.haml

69 lines
2.7 KiB
Plaintext

- provide(:title, generate_title('About'))
.jumbotron.jumbotron--particles
.jumbotron__particles#particles
.jumbotron__content
%h1= APP_CONFIG['site_name']
%p= t 'views.about.subtitle'
.container
.card
.card-body
.row
.col-md-4
%h3= t 'views.about.links.title'
%p= t('views.about.links.desc', app_title: APP_CONFIG['site_name'])
.col-md-4.col-sm-6
%a{ href: 'https://twitter.com/retrospring' }
.icon--showcase
%i.fa.fa-twitter
%h4.heading-about.text-center
Twitter
.col-md-4.col-sm-6
%a{ href: help_faq_path }
.icon--showcase
%i.fa.fa-question
%h4.heading-about.text-center
FAQ
.card
.card-body
.row
.col-md-4
%h3= t 'views.about.opensource.title'
%p= t('views.about.opensource.warning', app_title: APP_CONFIG['site_name'])
%p= raw t('views.about.opensource.desc',
app_title: APP_CONFIG['site_name'],
github: link_to(t('views.about.opensource.github'), 'https://github.com/Retrospring/retrospring'),
bugtracker: link_to(t('views.about.opensource.bugtracker'), 'https://github.com/Retrospring/retrospring/issues'))
.col-md-4
%a{ href: 'https://github.com/Retrospring/retrospring' }
.icon--showcase
%i.fa.fa-github
%h4.heading-about.text-center= t 'views.about.repository.title'
%p.text-center
%em= t 'views.about.repository.desc'
.card
.card-body
.row
.col-md-3.col-sm-12.col-xs-12
%h3= t 'views.about.statistics.title'
%p= t('views.about.statistics.desc', app_title: APP_CONFIG['site_name'])
.col-md-3.col-sm-6.col-xs-6
.entry.entry--statistics
%h2.entry__value#asked-count= Question.count
%h4.entry__description= t('views.general.question').pluralize(Question.count)
.entry.entry--statistics
%h2.entry__value#answered-count= Answer.count
%h4.entry__description= t('views.general.answer').pluralize(Answer.count)
.col-md-3.col-sm-6.col-xs-6
.entry.entry--statistics
%h2.entry__value#comment-count= Comment.count
%h4.entry__description= t('views.general.comment').pluralize(Comment.count)
.entry.entry--statistics
%h2.entry__value#smile-count= Smile.count + CommentSmile.count
%h4.entry__description= t('views.general.smile').pluralize(Smile.count)
.col-md-3.col-sm-12.col-xs-12
.entry.entry--users
.entry__value#follower-count= User.count
%h4.entry__description= t('views.general.user').pluralize(User.count)
= render 'shared/links'