12 lines
354 B
HTML
12 lines
354 B
HTML
<hr/>
|
|
<h2>Comments</h2><div class="commentCounter">0</div>
|
|
<div class="comments"></div>
|
|
<script type="text/javascript">
|
|
function fetchComments() {
|
|
fetch("/COMMENTS/$ARTICLE.comment").then((data)=>data.text())
|
|
.then((data)=>{
|
|
document.getElementById("comments").innerHTML=data
|
|
})
|
|
}
|
|
fetchComments()
|
|
</script> |