Welcome

Thanks for installing Craft CMS!

You’re looking at the index.html template file located in your templates/ folder. Once you’re ready to start building out your site’s front end, you can replace this with something custom.

If you’re new to Craft CMS, take some time to check out the resources on the right when you get a chance—especially Slack and Stack Exchange. The Craft community is full of smart, friendly, and helpful people!

Go to your Control Panel

{% set officialResources = [ { label: "Craft 3 Documentation", url: 'http://docs.craftcms.com/v3/' }, { label: "Craft 3 Class Reference", url: 'https://docs.craftcms.com/api/v3/' }, { label: "Craft 3 Plugins", url: 'https://plugins.craftcms.com' }, { label: "Demo site", url: 'https://demo.craftcms.com/' }, { label: "Craft Slack", url: 'https://craftcms.com/community#slack' }, { label: "Craft CMS Stack Exchange", url: 'http://craftcms.stackexchange.com/' }, ] %}

Official Resources

    {% for resource in officialResources %}
  • {{ resource.label }}
  • {% endfor %}
{% set communityResources = [ { label: "Mijingo", description: "Video courses and other learning resources", url: 'https://mijingo.com/craft' }, { label: "Envato Tuts+", description: "Video courses", url: 'https://webdesign.tutsplus.com/categories/craft-cms/courses' }, { label: "Straight Up Craft", description: "Articles, tutorials, and more", url: 'http://straightupcraft.com/' }, { label: "pluginfactory.io", description: "Craft plugin and module scaffold generator", url: 'https://pluginfactory.io/' }, ] %}

Community Resources

    {% for resource in communityResources %}
  • {{ resource.label }} – {{ resource.description }}
  • {% endfor %}