From 3be0ddf4f8cae5c4189e69a78dc6d736b3603816 Mon Sep 17 00:00:00 2001 From: John Aziz Date: Mon, 4 Mar 2024 14:06:55 +0000 Subject: [PATCH] remove author name and email --- cookiecutter.json | 4 ---- {{cookiecutter.project_slug}}/app.py | 4 ---- 2 files changed, 8 deletions(-) diff --git a/cookiecutter.json b/cookiecutter.json index fe2fc13..0621aec 100644 --- a/cookiecutter.json +++ b/cookiecutter.json @@ -1,7 +1,5 @@ { "SITE_URL": "http://example.com", - "author_name": "Your Name", - "author_email": "me@{{cookiecutter.SITE_URL}}", "output_path": "output", "app_filename": "app.py", "SITE_TITLE": "Untitled Site", @@ -32,8 +30,6 @@ }, "__prompts__": { "SITE_URL": "What is the URL of your site:", - "SITE_AUTHOR": "What is your Name", - "SITE_EMAIL": "What is your email address", "SITE_TITLE": "The title of your site:", "collection": "Do you want to have a collection of pages:", "blog": "Do you want to have a blog:", diff --git a/{{cookiecutter.project_slug}}/app.py b/{{cookiecutter.project_slug}}/app.py index d6d5405..40f163b 100644 --- a/{{cookiecutter.project_slug}}/app.py +++ b/{{cookiecutter.project_slug}}/app.py @@ -20,10 +20,6 @@ app.site_vars.update({ "SITE_TITLE":"{{cookiecutter.SITE_TITLE}}", "SITE_URL":"{{cookiecutter.SITE_URL}}", - "OWNER":{ - "name": "{{cookiecutter.author_name}}", - "email": "{{cookiecutter.author_email}}", - }, "NAVIGATION":[ { "name": "Home",