A bare bones front-end for knockout designed for maximum compatibility with "obsolete" browsers
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
317B

  1. <div class="row event {{ ($key % 2) ? 'even' : 'odd' }}">
  2. @foreach($event->content as $item)
  3. @if($item->link == null)
  4. <p>{{ $item->text }}</p>
  5. @else
  6. <a href="{{ $item->link }}">{{ $item->text }}</a>
  7. @endif
  8. @endforeach
  9. <span>{{ $event->date }}</span>
  10. </div>