1
0
mirror of https://github.com/avinal/avinal.github.io.git synced 2026-07-04 07:40:09 +05:30

a lot of changes

This commit is contained in:
avinal
2020-09-28 19:52:28 +05:30
parent 4d95702bb5
commit a4239c6f28
15 changed files with 95 additions and 7 deletions
+32 -6
View File
@@ -3,7 +3,7 @@
AUTHOR = 'Avinal'
SITENAME = 'The Interstellar Twilight'
SITEURL = ''
SITEURL = 'https://avinal.github.io'
THEME = 'alchemy'
PATH = 'content'
SITEIMAGE = '/images/profile.jpg width=150 height=150'
@@ -18,11 +18,37 @@ TRANSLATION_FEED_ATOM = None
AUTHOR_FEED_ATOM = None
AUTHOR_FEED_RSS = None
# Blogroll
LINKS = (('GitHub', 'https://github.com/avinal'),
('LinkedIn', ''),)
# URL Flexibility
ARTICLE_URL = 'posts/{category}/{slug}/'
ARTICLE_SAVE_AS = 'posts/{category}/{slug}.html'
PAGE_URL = 'pages/{slug}/'
PAGE_SAVE_AS = 'pages/{slug}.html'
# static content setting
STATIC_PATHS = ['extras', 'images']
EXTRA_PATH_METADATA = {
'extras/android-chrome-192x192.png': {'path': 'android-chrome-192x192.png'},
'extras/android-chrome-512x512.png': {'path': 'android-chrome-512x512.png'},
'extras/apple-touch-icon.png': {'path': 'apple-touch-icon.png'},
'extras/browserconfig.xml': {'path': 'browserconfig.xml'},
'extras/favicon-16x16.png': {'path': 'favicon-16x16.png'},
'extras/favicon-32x32.png': {'path': 'favicon-32x32.png'},
'extras/favicon.ico': {'path': 'favicon.ico'},
'extras/site.webmanifest': {'path': 'site.webmanifest'},
'extras/mstile-150x150.png': {'path': 'mstile-150x150.png'},
'extras/mstile-70x70.png': {'path': 'mstile-70x70.png'},
'extras/mstile-310x310.png': {'path': 'mstile-310x310.png'},
'extras/mstile-144x144.png': {'path': 'mstile-144x144.png'},
'extras/safari-pinned-tab.svg': {'path': 'safari-pinned-tab.svg'},
}
# icons
ICONS = [
('github', "https://github.com/avinal"),
('gitlab', 'https://code.videolan.org/avinal'),
('linkedin', 'https://www.linkedin.com/in/avinal/'),
('instagram', 'https://www.instagram.com/amaranthine.sole/'),
]
DEFAULT_PAGINATION = 10