All Projects → tinacms → Tinacms.org

tinacms / Tinacms.org

Organization site for general info, documentation, blogs & contribution guidelines.

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to Tinacms.org

Strapi Starter Next Corporate
Next.js starter for creating a corporate site with Strapi.
Stars: ✭ 145 (+54.26%)
Mutual labels:  nextjs, jamstack
Strapi
🚀 Open source Node.js Headless CMS to easily build customisable APIs
Stars: ✭ 41,786 (+44353.19%)
Mutual labels:  jamstack, cms-framework
Next Js Blog Boilerplate
🚀 Nextjs Blog Boilerplate is starter code for your blog based on Next framework. ⚡️ Made with Nextjs, TypeScript, ESLint, Prettier, PostCSS, Tailwind CSS.
Stars: ✭ 134 (+42.55%)
Mutual labels:  nextjs, jamstack
jamstack-preview-and-deployments
Preview and deploy NextJS applications from the wordpress admin.
Stars: ✭ 17 (-81.91%)
Mutual labels:  nextjs, jamstack
next-plugin-preval
Pre-evaluate async functions during builds and import them like JSON
Stars: ✭ 174 (+85.11%)
Mutual labels:  nextjs, jamstack
Commercejs Nextjs Demo Store
Commerce demo store built for the Jamstack. Built with Commerce.js, Next.js, and can be one-click deployed to Netlify. Includes product catalog, categories, variants, cart, checkout, payments (Stripe) order confirmation, and printable receipts.
Stars: ✭ 737 (+684.04%)
Mutual labels:  nextjs, jamstack
Jamstackthemes
A list of themes and starters for JAMstack sites.
Stars: ✭ 298 (+217.02%)
Mutual labels:  nextjs, jamstack
Api Platform
Create REST and GraphQL APIs, scaffold Jamstack webapps, stream changes in real-time.
Stars: ✭ 7,144 (+7500%)
Mutual labels:  jamstack, nextjs
Reactime
Chrome extension for improving and optimizing performance in React applications (Gatsby and Next.js compatible).
Stars: ✭ 1,219 (+1196.81%)
Mutual labels:  nextjs
Nextra
The Next.js Static Site Generator
Stars: ✭ 1,271 (+1252.13%)
Mutual labels:  nextjs
Nextjs Full Demo
Demo about integration between examples of next.js and also fix some issues during development
Stars: ✭ 76 (-19.15%)
Mutual labels:  nextjs
Nextjs With Redux And Material Ui
A boilerplate NextJS with Redux and Material UI
Stars: ✭ 79 (-15.96%)
Mutual labels:  nextjs
Placeline Nextjs
HyperTrack Placeline web application sample using NextJS, Ant-Design, Styled-Components, and Heroku
Stars: ✭ 88 (-6.38%)
Mutual labels:  nextjs
Bancha
Bancha is an open-source CMS made by Nicholas Valbusa written in PHP5.3.
Stars: ✭ 76 (-19.15%)
Mutual labels:  cms-framework
Cmseek
CMS Detection and Exploitation suite - Scan WordPress, Joomla, Drupal and over 180 other CMSs
Stars: ✭ 1,296 (+1278.72%)
Mutual labels:  cms-framework
Courselit
Start your own online teaching business. Features include course maker, students manager, payments and more.
Stars: ✭ 73 (-22.34%)
Mutual labels:  cms-framework
Nextjs Website Boilerplate
A Next.js website boilerplate that satisfies some common website requirements.
Stars: ✭ 74 (-21.28%)
Mutual labels:  nextjs
Next Offline
make your Next.js application work offline using service workers via Google's workbox
Stars: ✭ 1,306 (+1289.36%)
Mutual labels:  nextjs
Nextjs Redux Firebase Authentication
Boilerplate Project for Authentication with Firebase in NextJs and Redux
Stars: ✭ 90 (-4.26%)
Mutual labels:  nextjs
Resume Nextjs
Next.js 로 누구나 쉽게 만드는 Static HTML 이력서
Stars: ✭ 84 (-10.64%)
Mutual labels:  nextjs

Tina.io website

Source code for the tina.io website.

Development

yarn install
yarn develop

Testing Local TinaCMS Changes

If you have the tinacms repository cloned locally you can use it when running tina.io:

TINA=../path/to/tinacms yarn develop

You can also specify which packages you want to watch:

TINA=../path/to/tinacms [email protected]/forms,react-tinacms-inline

Warning

This will only work for packages loaded by webpack. That means that environments which don't use webpack (i.e. SSR builds) will not use this alias.

Shortcodes

This site supports shortcodes in Markdown content via remark-shortcodes.

Shortcodes must be written as React components. To add a shortcode, export it from utils/shortcodes.tsx.

export function MyShortcode({ textContent }) {
  return <div>{textContent}</div>
}

Call the shortcode in your content by writing the name of the component encased in double curly braces. Key-value pairs included in the shortcode will be passed to your component as props.

{{ MyShortcode textContent="Example shortcode" }}

Shortcode Limitations

Shortcodes must be standalone elements; "wrapping" shortcodes will not work.

Copy-able Code Blocks

A "Copy" button can be added to Code Blocks by adding the copy tag to fenced code blocks.

Non-copyable JS

```js
const christmastPresent = new Banana()
```

Copyable JS

```js,copy
const christmastPresent = new Banana()
```

Copyable Text

```copy
Hello World
```
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].