Move the large comment to main content

As suggested, made the text concise and move it below the code block.
This commit is contained in:
Maharshi Raval 2018-09-06 00:51:05 +05:30 committed by GitHub
parent f322118b54
commit 91ec866321
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -45,18 +45,8 @@ The first file, `admin/index.html`, is the entry point for the Netlify CMS admin
<script src="https://unpkg.com/netlify-cms@^2.0.0/dist/netlify-cms.js"></script>
</body>
</html>
<!--
The main script that builds the page and powers the Netlify CMS can be included from
two deffirent sources,
- https://unpkg.com/netlify-cms@^2.0.0/dist/netlify-cms.js
- https://cdn.jsdelivr.net/npm/netlify-cms@^2.0.0/dist/netlify-cms.js
For any reason if the script url used above fails, the other source can be used instead.
-->
```
In the above code the `script` is loaded from `unpkg` CDN. Should there be any issue with it, `jsDelivr` can be used as an alterntive option. The `src` for that would be `https://cdn.jsdelivr.net/npm/netlify-cms@^2.0.0/dist/netlify-cms.js`
The second file, `admin/config.yml`, is the heart of your Netlify CMS installation, and a bit more complex. The [Configuration](#configuration) section covers the details.