Skip to content

Commit 5a4ae28

Browse files
committed
chore: updated name of the site
1 parent 7a0df9f commit 5a4ae28

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

example/generated/index.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@
33
<head>
44
<meta charset="utf-8"/>
55
<meta name="viewport" content="width=device-width, initial-scale=1"/>
6-
<meta name="title" content="My custom Blog"/>
6+
<meta name="title" content="Go Simple SSG"/>
77
<meta name="description" content="This is my custom blog"/>
88

99
<link rel="stylesheet" href="./index.css">
10-
<title>My custom Blog</title>
10+
<title>Go Simple SSG</title>
1111
</head>
1212
<body>
1313
<div class="container">
1414
<nav class="header">
15-
<a href="/" class="header__title">My custom Blog</a>
15+
<a href="/" class="header__title">Go Simple SSG</a>
1616
<ul class="header__links">
1717
<li class="header__links_item">
1818
<a href="/" class="header__links__item__link">Home</a>

example/generated/test.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<head>
44
<meta charset="utf-8"/>
55
<meta name="viewport" content="width=device-width, initial-scale=1"/>
6-
<meta name="title" content="My custom Blog"/>
6+
<meta name="title" content="Go Simple SSG"/>
77
<meta name="description" content="description"/>
88
<title>Test</title>
99

@@ -12,7 +12,7 @@
1212
<body>
1313
<div class="container">
1414
<nav class="header">
15-
<a href="/" class="header__title">My custom Blog</a>
15+
<a href="/" class="header__title">Go Simple SSG</a>
1616
<ul class="header__links">
1717
<li class="header__links_item">
1818
<a href="/" class="header__links__item__link">Home</a>

example/generated/testMd.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<head>
44
<meta charset="utf-8"/>
55
<meta name="viewport" content="width=device-width, initial-scale=1"/>
6-
<meta name="title" content="My custom Blog"/>
6+
<meta name="title" content="Go Simple SSG"/>
77
<meta name="description" content="description"/>
88
<title>SSG</title>
99

@@ -12,7 +12,7 @@
1212
<body>
1313
<div class="container">
1414
<nav class="header">
15-
<a href="/" class="header__title">My custom Blog</a>
15+
<a href="/" class="header__title">Go Simple SSG</a>
1616
<ul class="header__links">
1717
<li class="header__links_item">
1818
<a href="/" class="header__links__item__link">Home</a>

example/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313
func main() {
1414
baseConfig := config.NewConfig(config.Config{
1515
SiteInfo: config.SiteInfo{
16-
Title: "My custom Blog",
16+
Title: "Go Simple SSG",
1717
Description: "This is my custom blog",
1818
},
1919
})

0 commit comments

Comments
 (0)