export const seperator = "
"
export const site_name = "DeaDvey's Blog"
export const site_description = "Films, tech, random shit"
export const timeline_length = 20
export const root_path = "/home/gaming/code/web/blogger"
// Date format using https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toLocaleDateString
export const date_format = 'en-GB';
export const date_options = {
day: '2-digit',
month: '2-digit',
year: 'numeric',
hour: '2-digit',
minute: '2-digit',
second: '2-digit',
hour12: true,
timeZone: 'UTC'
}
//// Format /////
// The syntax for this is pretty simple
// %A - List of tags
// %C - Post content
// %D - Published date in the format specified by date_format
// %E - Edited date in the format specified by date_format
// %L - URL Permanent link to the post
// %N - the username of the user (poster)
// %P - URL to create a new post
// %O - URL to edit a post
// %R - Site wide RSS feed
// %S - post seperator as defined by post_seperator
// %T - Title
// %U - URL the the user (poster)
// %Y - Site Name as defined by site_name
// %W - Site Description as defined by site_description
export const timeline_header = `%Y
%W
Create Post
Edit Post
RSS Feed
%S`
export const user_post_format = `%T
%C
%A
Permalink
%S`
export const post_page_format = `%T
%C
%A
By %N
Posted: %D
Edited: %E`
export const timeline_post_format = `%T
%C
Permalink
By %N
%S`