style: интеграция VK комментариев с Blowfish цветовой схемой

This commit is contained in:
Astronit 2026-02-20 13:15:58 +00:00
parent dacf5e6e60
commit b006c48c52
1 changed files with 31 additions and 4 deletions

View File

@ -1,5 +1,8 @@
<!-- VK Comments Widget -->
<!-- VK Comments Widget with Blowfish styling -->
<div class="vk-comments-wrap">
<div id="vk_comments"></div>
</div>
<script type="text/javascript" src="https://vk.com/js/api/openapi.js?169"></script>
<script type="text/javascript">
VK.init({apiId: 54459311, onlyWidgets: true});
@ -7,6 +10,30 @@
limit: 10,
attach: "*",
autoPublish: 0,
pageUrl: "{{ .Permalink }}"
pageUrl: "{{ .Permalink }}",
width: "auto"
});
</script>
<style>
.vk-comments-wrap {
background: rgb(var(--color-neutral-50));
color: rgb(var(--color-neutral-900));
border: 1px solid rgb(var(--color-neutral-200));
border-radius: 12px;
padding: 24px;
margin-top: 3rem;
margin-bottom: 4rem;
}
/* Dark mode */
.dark .vk-comments-wrap {
background: rgb(var(--color-neutral-900));
color: rgb(var(--color-neutral-50));
border-color: rgb(var(--color-neutral-700));
}
#vk_comments {
width: 100% !important;
}
</style>