Formating .htm removed

This commit is contained in:
Your Name
2021-08-04 12:34:53 +02:00
parent 52ecda573b
commit 064e8a8054
4 changed files with 48 additions and 13 deletions
+19 -4
View File
@@ -1,4 +1,4 @@
title = "CMS" ==
==
<?php
use Cms\Classes\Theme;
use Cms\Classes\Content;
@@ -11,6 +11,21 @@ function resolveCmsContent($root, $args) {
return Content::loadCached($theme, $args['name']);
}
?>
== # Content extend type Query { cmsContent(name: String!): CmsContent! } type CmsContent { fileName: String! content:
String markup: String parsedMarkup: String } # CMS-wide types # Backend\Models\User type BackendUser { id: ID! }
#System\Models\File type SystemFile { id: ID path: String title: String description: String }
==
# Content
extend type Query {
cmsContent(name: String!): CmsContent!
}
type CmsContent {
fileName: String!
content: String
markup: String
parsedMarkup: String
}
# CMS-wide types
# Backend\Models\User
type BackendUser { id: ID! }
#System\Models\File
type SystemFile { id: ID path: String title: String description: String }