From 917d50bd63fcd8787eda38316220e37e0df90d0e Mon Sep 17 00:00:00 2001 From: Jeff MacKinnon Date: Mon, 14 Nov 2022 12:09:32 -0400 Subject: [PATCH] Gitea doesn't like RST files, so MD --- README.md | 61 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ README.rst | 46 ---------------------------------------- 2 files changed, 61 insertions(+), 46 deletions(-) create mode 100644 README.md delete mode 100644 README.rst diff --git a/README.md b/README.md new file mode 100644 index 0000000..4e0a617 --- /dev/null +++ b/README.md @@ -0,0 +1,61 @@ +# theme-jeffmackinnon.com + + + +The base pelican theme for my site, `jeffmackinnon.com `__ + +There are some variables that you can add to the ``pelicanconf.py`` file that make things look good. + +``` + +# #################################################### +# JeffTheme variables +# #################################################### + +#DIRECT_TEMPLATES = ['posts'] # If you already have a direct templates just add posts. + +#THEME_COLOUR = 'css-blue' # Leave commented + +## The search things +DUCKDUCKGOSEARCHURL = 'jeffmackinnon.com' +BIO_IMAGE = 'jeffmackinnon.jpg' # Make sure that this is in the "images" folder +SHOWCATEGORIES = True +SHOWTAGS = False + +## The Social Things +SOCIAL_SHARE = True +#SOCIAL_TWITTER = '' +#SOCIAL_GITHUB = '' +#SOCIAL_LINKEDIN = '' +#SOCIAL_FLICKR = '' +#SOCIAL_MASTODON = 'https:///@' +MICROBLOG = 'microblog' +MASTODON_COMMENTS = False +TWITTER_COMMENTS = True +COMMENTS = False + + +#Contact Things +#CONTACT_PHONE_NUM = '+1 (902) 237-9984' +#CONTACT_EMAIL = 'jeff@jeffmackinnon.com' +CONTACT_HOME_ADDR = 'Halifax, NS' +#CONTACT_BUSINESS_ADDR ='' + +SITELICENSE = 'Creative Commons License
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.' +TRACKING = False +IMAGETRACKINGCODE = '' + +# This is for https://fediring.net/#table-of-members and is located in the sidebar +FEDIRING = False +FEDIRINGRANDOM = True +FEDIRINGURL = '' # This is needed because the SITEURL includes the https:// and Fediring doesn't want that part. + +COMMENTS = False + + +# That's all folks +# #################################################### + +``` + +You can copy the entire thing into your `pelicanconf.py` file and make the changes for your site. diff --git a/README.rst b/README.rst deleted file mode 100644 index dd43114..0000000 --- a/README.rst +++ /dev/null @@ -1,46 +0,0 @@ -======================= -theme-jeffmackinnon.com -======================= - - -The base pelican theme for my site, `jeffmackinnon.com `__ - -There are some variables that you can add to the ``pelicanconf.py`` file that make things look good. - -.. code:: python - - # - # Theme variables - # - ## The search things - DUCKDUCKGOSEARCHURL = 'Your URL' - BIO_IMAGE = 'image' # Make sure that this is in the "images" folder - ## The Social Things - SOCIAL_TWITTER = 'jeffmackinnon' - SOCIAL_GITHUB = 'jeffmackinnon' - SOCIAL_LINKEDIN = 'jeffmackinnon' - SOCIAL_MASTODON = 'https://bluenoser.me/@Jeff' - - #SOCIAL_FLICKR = '' - #MICROBLOG = '' - CONTACT_PHONE_NUM = '+# (###) ###-####' - CONTACT_EMAIL = 'name@url.tld' - #CONTACT_HOME_ADDR = '' - #CONTACT_BUSINESS_ADDR ='' - - THEME_COLOUR = 'css-blue' # There are only 2 colours right now, pink and blue. Pink is Default - SITELICENSE = '' # Change to what you want. - # - #Frontpage customization - # - TAGLINEHEAD = 'This is a header' - TAGLINE = 'This is the tagline' - CORNERSTONE_CONTENT = True # If true add the html you want in include/cornerstone.html - NEWSLETTER = '' # Put the HTML or JS from your provider here. - INCLUDECATEGORY = True # This includes the Category in the article list - MOREBUTTON = True #This adds the "MORE" to the article list - - # That's all folks - - -You can copy the entire thing into your ``pelicanconf.py`` file and make the changes for your site.