Skip to content

Instantly share code, notes, and snippets.

@dacmail
Created October 16, 2020 13:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dacmail/efbfcb4b15840ed3f993647b5c43f724 to your computer and use it in GitHub Desktop.
Save dacmail/efbfcb4b15840ed3f993647b5c43f724 to your computer and use it in GitHub Desktop.
@extends('layouts.app')
@section('content')
<section class="c-content">
<div class="c-content__wrapper">
<header class="c-content__header">
@php
do_action( 'sensei_single_course_content_inside_before', get_the_ID() );
@endphp
</header>
<article class="c-content__text">
@php
while ( have_posts() ) {
the_post();
the_content();
}
@endphp
</article>
</div>
</section>
@php
do_action( 'sensei_single_course_content_inside_after', get_the_ID() );
@endphp
@endsection
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment