<iframe width="560" height="315" src="https://www.youtube.com/embed/nMVJxTcU8Kg" frameborder="0" allowfullscreen></iframe>
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item" src="https://www.youtube.com/embed/nMVJxTcU8Kg" frameborder="0" allowfullscreen></iframe>
</div>
function dp_recent_comments() {
$comment_len = 80;
$comments = get_comments('number=5');
if ($comments) {
foreach ($comments as $comment) {
?>
<li>
<span class="thumb"><?php echo get_the_post_thumbnail( $comment->comment_post_ID, 'thumbnail' ); ?></span>
<span class="post-comment-link"><?php echo get_the_title( $comment->comment_post_ID ); ?></span>
<span class="author"><a href="<?php echo get_comment_author_url( $comment->comcomment_ID); ?>"><?php echo $comment->comment_author; ?>:</a></span>
<span class="time"><?php echo get_the_date( 'd M Y, H:i', $comment->comment_post_ID ); ?></span>
<span class="comment-text"><?php echo strip_tags(substr(apply_filters('get_comment_text', $comment->comment_content), 0, $comment_len)); ?>...</span>
</li>
<?php
}
} else {
echo "<li>Комментарии отсутствуют</li>";
}
}
Jekyll был первым генератором статических сайтов, представившим концепцию “вводной части” — способа добавления метаданных в шаблоны или файлы markdown. Вводная состоит из небольшого количества данных в формате YAML в начале каждого файла, отделенных тремя дефисами (---) с конца и с начала:
---
title: A blog post
date: 2014-09-01
tags: ["meta", "yaml"]
---
# Blogpost with meta data
This is a short example of a Markdown document with meta data as front matter.
<div class="container-fluid">
</div>
<div class="container-fluid">
</div>