.github
.husky
.storybook
__mocks__
cypress
dev-test
backends
azure
config.yml
index.html
bitbucket
git-gateway
github
gitlab
proxy
test
Photo 1-lobby_FS.jpg
config.yml
example.css
index.html
moby-dick.jpg
nf-logo.png
functions
img
packages
scripts
website
.all-contributorsrc
.editorconfig
.eslintrc.js
.gitattributes
.gitignore
.nvmrc
.prettierignore
.prettierrc
.stylelintrc
.vale.ini
CHANGELOG.md
CODE_OF_CONDUCT.md
CONTRIBUTING.md
LICENSE
README.md
babel.config.js
cms.png
commitlint.config.js
cypress.json
jest.config.js
lerna.json
netlify.toml
package.json
renovate.json
setupTestFramework.js
tsconfig.json
yarn.lock
42 lines
1.2 KiB
HTML
42 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
|
|
<title>Netlify CMS Development Test</title>
|
|
</head>
|
|
<body>
|
|
<script src="dist/netlify-cms.js"></script>
|
|
<script>
|
|
var PostPreview = createClass({
|
|
render: function() {
|
|
var entry = this.props.entry;
|
|
return h(
|
|
'div',
|
|
{},
|
|
h('div', { className: 'cover' }, h('h1', {}, entry.getIn(['data', 'title']))),
|
|
h('p', {}, h('small', {}, 'Written ' + entry.getIn(['data', 'date']))),
|
|
h('div', { className: 'text' }, this.props.widgetFor('body')),
|
|
);
|
|
},
|
|
});
|
|
|
|
var PagePreview = createClass({
|
|
render: function() {
|
|
var entry = this.props.entry;
|
|
return h(
|
|
'div',
|
|
{},
|
|
h('div', { className: 'cover' }, h('h1', {}, entry.getIn(['data', 'title']))),
|
|
h('p', {}, h('small', {}, 'Written ' + entry.getIn(['data', 'date']))),
|
|
h('div', { className: 'text' }, this.props.widgetFor('body')),
|
|
);
|
|
},
|
|
});
|
|
|
|
CMS.registerPreviewTemplate('posts', PostPreview);
|
|
CMS.registerPreviewTemplate('pages', PagePreview);
|
|
</script>
|
|
</body>
|
|
</html>
|