Closed mantaroh closed 8 months ago
Example:
<html> <head> <title>Test site</title> </head> <body> <div cms-item cms-content-type="blog" cms-content="first-blog" <spear-seo title="{%= blog_title %}" /></spear-seo> </div> </body> </html>
An above example has <title>Test site</title>, then spear will generate the following HTML:
<title>Test site</title>
<html> <head> <title>First Blog Title!</title> </head> <body> <div> </div> </body> </html>
@yoannes @qst-exe @KeisukeMoriyama
Somebody please review to this PR 🙏🏼
Overview
Example:
An above example has
<title>Test site</title>
, then spear will generate the following HTML: