JSONsite: Create a SPA using a JSON file

Cool. On a side note, every time I see your profile picture, I don’t see a stretched-out dog, I see a blurry red car. Weird stuff…

3 Likes

Probably because the dog is to thick you see a red car instead :rofl:

2 Likes

Spitting straight fax

Vercel has preview domains and production domains.

Also I just got the https://jsonsite.js.org domain! Yay!

1 Like

…You might want to get rid of those Lorem Ipsums:

image

No, lorem ipsums are meant to be placeholder texts/example texts. I can add the translate="no" attribute to fix it.

3 Likes

In Mobile, it’s not looks good.

Weird, let me try something

It might be the library, Siimple isn’t the greatest mobile framework.

1 Like

Hey dude, i suggest you to add color option.

Also, Create another method that almost like HTML, But in JSON Format.

Like from JSON:

{
"html": {
  "head": {
    "title": "My Website",
    "meta": {
       ....
     }
   },
  "body": {
     "h1": "Hello World"
   }
  }
}

To:

<html>
  <head>
    <title>My website</title>
    <meta ....>
  </head>
  <body>
     <h1>Hello World</h1>
  </body>
</html>

jsonsite-vue :eyes:

Yes, that already exists, and you could see the readme.md on github on how to use it. If you also see in the readme, you can see the custom css option.

You can basically already do that with pages because HTML is supported (as documented in the readme)

Metatags are controlled by the title, description, and image.

I document everything in the “readme”, so you can read that file for more info!

2 Likes

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.