AutorÃa | Ultima modificación | Ver Log |
{{!
This file is part of Moodle - http://moodle.org/
Moodle is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Moodle is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Moodle. If not, see <http://www.gnu.org/licenses/>.
}}
{{!
@template block_thumblinks_action/thumblinks_actions
This template renders the main content area for the mcms block.
Example context (json):
{}
}}
<div id="block-featured-courses-{{uniqid}}" class="block-featured-courses block-cards">
<div class="container">
<div class="row">
{{#courses}}
<div class="col col-md-4 pt-3 pt-md-0">
<div class="thumbnail my-1 d-flex flex-column justify-content-start">
<div class="course-image"
style='background-image: url("{{{ courseimage}}}");'>
</div>
<div class="title p-1 text-primary font-weight-bolder text-truncate title p-2 text-primary flex-grow-1">{{ fullname }}</div>
<div class="d-flex flex-row p-2 ">
<div class="otherinfo text-muted font-italic flex-grow-1">
{{#startdate}}{{#userdate}}{{.}}, {{#str}} strftimedate {{/str}}{{/userdate}}{{/startdate}}</div>
<div class="link">
<a class="btn btn-primary rounded-circle p-1" href="{{viewurl}}">{{#pix}}
t/right, core, {{#str}}viewcourse, block_featured_courses {{/str}}{{/pix}}</a>
</div>
</div>
</div>
</div>
{{/courses}}
</div>
</div>
</div>