Created
October 16, 2020 13:08
-
-
Save dacmail/efbfcb4b15840ed3f993647b5c43f724 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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