8

基本的な Slim 構文を理解するのに苦労しています。

最初の質問ですが、改行(改行)の入れ方は?

2 番目のリクエストです。次のスニペットを書き直していただけますか?

- provide(:title, @course.title)                                                                                                          

.row
  aside.span4
    section
      h1 = @course.title.capitalize

      => link_to t('ui.edit'), edit_course_path(@course)
      '|
      => link_to t('ui.back'), courses_path

      p
        b #{t('activerecord.attributes.subject.title')}:
        | #{@course.subject.title}

      p
        b #{t('activerecord.attributes.student_level.title')}:
        | #{@course.student_level.title}

      h4 #{t('activerecord.attributes.course.objectives')}
      = @course.objectives

これはその出力です:

タイトル a

タフリラッシュ (編集) | オルカガ

Predmet nomi: English 5-7歳

O'quvchi darajasi:初心者

Kurs haqida ma'lumot

目的b

4

3 に答える 3

10

新しい行には、次のように br を使用する必要があります。

h1 Line1 content
br
h1 Line2 content

上記のコードについては、次のように書き換えることができます。

-provide(:title,@course.title)                                                    
.row
  aside.span4
    section
      h1 = @course.title.capitalize

      = link_to t('ui.edit'), edit_course_path(@course)
      '|
      = link_to t('ui.back'), courses_path

      p
        b = t('activerecord.attributes.subject.title')
        |:     
        = @course.subject.title

      p
        b = t('activerecord.attributes.student_level.title')
        |: 
        = @course.student_level.title

      h4 = t('activerecord.attributes.course.objectives')
      = @course.objectives
于 2013-09-18T16:21:49.240 に答える