oakazanin/layouts/partials/comments.html

27 lines
646 B
HTML

<!-- VK Comments Widget -->
<div id="vk_comments"></div>
<script type="text/javascript" src="https://vk.com/js/api/openapi.js?169"></script>
<script type="text/javascript">
VK.init({apiId: YOUR_API_ID, onlyWidgets: true});
VK.Widgets.Comments("vk_comments", {
limit: 10,
attach: "*",
autoPublish: 0,
pageUrl: "{{ .Permalink }}",
width: "auto",
height: 400
});
</script>
<style>
#vk_comments {
margin-top: 2rem;
padding-top: 2rem;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}
/* Адаптация под тёмную тему */
#vk_comments iframe {
border-radius: 8px;
}
</style>