edit content

This commit is contained in:
nc 2023-02-19 12:28:33 +07:00
parent 71eefd2960
commit f412ba6263
2 changed files with 5 additions and 2 deletions

View File

@ -117,6 +117,9 @@ uwsgi /path/to/uwsgi.ini
then i added the isso script to my gatsby component
```javascript
import { Script } from "gatsby";
// ...
const Comment = ({post_id}) => {
return (
<>
@ -139,7 +142,7 @@ const Comment = ({post_id}) => {
<SEO title={`${post.title} | ${config.siteTitle}`} />
<div className="post page">
<div className="article figure">
<div className="HeaderContainer">
<div className="header-container">
<small className="sub">
{post.date}
</small>

View File

@ -1,4 +1,4 @@
import React, { useEffect, useState } from "react";
import React from "react";
import { graphql, Script } from "gatsby";
import config from '../../../data/site-config';
import Base from "../../components/Base";