Customize your eleventy site.
Update the name and links in site header and footer here
First, take a look our base layout where we starting our tag head
and body
in base.njk
- Change your base title web page here
- Change your description about the site
- Your twitter site here
- And your url for the site here
Filename base.njk
---
title: Tulip Theme, Green Environment Eleventy Theme
site:
siteurl: https://theme.kurva.xyz/tulip-theme
name: Tulip Theme
eleventyComputed:
social:
description: "Demo Preview for Tulip, Green Environment Eleventy Theme"
imgsrc: ""
imgalt: "Supposed to be logo here"
twittersite: "Your Twitter website here - @author"
twittercreator: "Your Twitter creator here - @author"
---
<!DOCTYPE html>
<html lang="en">
<head>
{% include 'head.njk' %}
</head>
<body class="unresolved">
{{ content | safe }}
</body>
</html>
If you want to look our meta tags for SEO you can see inside head.njk
file
Next steps
Site headers and footers
If you want to change site title, navigations link in header and footer. Locate inside _include/partials/site-header.njk
and partials/site-footer.njk
to update yours navigations
Favicon (Website Icon)
Put the image icon with maximum size 96x96 inside folder images/favicon.png
or you can change the location located in _includes/head.njk
Filename base.njk
<link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16.png">