Skip to content

Commit 22e0459

Browse files
authored
Merge pull request #15 from render-engine/remove-author-name-email
remove author name and email
2 parents 889a7ec + 3be0ddf commit 22e0459

File tree

2 files changed

+0
-8
lines changed

2 files changed

+0
-8
lines changed

cookiecutter.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
{
22
"SITE_URL": "http://example.com",
3-
"author_name": "Your Name",
4-
"author_email": "me@{{cookiecutter.SITE_URL}}",
53
"output_path": "output",
64
"app_filename": "app.py",
75
"SITE_TITLE": "Untitled Site",
@@ -32,8 +30,6 @@
3230
},
3331
"__prompts__": {
3432
"SITE_URL": "What is the URL of your site:",
35-
"SITE_AUTHOR": "What is your Name",
36-
"SITE_EMAIL": "What is your email address",
3733
"SITE_TITLE": "The title of your site:",
3834
"collection": "Do you want to have a collection of pages:",
3935
"blog": "Do you want to have a blog:",

{{cookiecutter.project_slug}}/app.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,6 @@
2020
app.site_vars.update({
2121
"SITE_TITLE":"{{cookiecutter.SITE_TITLE}}",
2222
"SITE_URL":"{{cookiecutter.SITE_URL}}",
23-
"OWNER":{
24-
"name": "{{cookiecutter.author_name}}",
25-
"email": "{{cookiecutter.author_email}}",
26-
},
2723
"NAVIGATION":[
2824
{
2925
"name": "Home",

0 commit comments

Comments
 (0)