1
Fork 0

Remove dedicated links config

This commit is contained in:
Jake Howard 2016-04-08 22:26:17 +01:00
parent 952bbb7e8a
commit 03f84426a8
3 changed files with 5 additions and 8 deletions

View file

@ -1 +1,5 @@
links:
github: https://github.com/RealOrangeOne
twitter: https://twitter.com/RealOrangeOne
instagram: https://instagram.com/RealOrangeOne
youtube: https://www.youtube.com/user/TheOrangeOneOfficial

View file

@ -1,4 +0,0 @@
github: https://github.com/RealOrangeOne
twitter: https://twitter.com/RealOrangeOne
instagram: https://instagram.com/RealOrangeOne
youtube: https://www.youtube.com/user/TheOrangeOneOfficial

View file

@ -22,9 +22,6 @@ def generate_config(base_dir):
if project['path'] in page: # If there's a custom config if project['path'] in page: # If there's a custom config
default['projects'][i] = dict(project, **page[project['path']]) default['projects'][i] = dict(project, **page[project['path']])
# Add links config
default['links'] = get_data_from_file(base_dir, 'links.yml')
return default, page, switcher return default, page, switcher