-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
implement comment section in templates; update app routes for blog posts
- Loading branch information
Showing
700 changed files
with
256,918 additions
and
131 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<section id="comments" class="comments-section"> | ||
<h2>Leave a Comment</h2> | ||
<form id="comment-form"> | ||
<input type="text" id="username" class="comment-input" placeholder="Your name" required> | ||
<textarea id="comment" class="comment-input" placeholder="Write your comment here..." required></textarea> | ||
<button type="submit" class="submit-comment-btn">Post Comment</button> | ||
</form> | ||
|
||
<div id="comment-list" class="comment-list"> | ||
<!-- Comments will appear here --> | ||
</div> | ||
</section> |
Oops, something went wrong.