51 lines
1.8 KiB
INI
51 lines
1.8 KiB
INI
# SWG Context Configuration File
|
|
# Copyright (C) 2022 luca0N! <luca0n.com>
|
|
|
|
# This is a very minimal .ini-like configuration file.
|
|
#
|
|
# Comments are allowed at the beginning of a new line starting with the '#'
|
|
# character.
|
|
|
|
[General]
|
|
# General website configuration.
|
|
|
|
# This is the name of the website, which will be used to display in page
|
|
# headers as well as in the HTML title of pages.
|
|
WebsiteName="luca0N.com"
|
|
# This specifies the website publisher.
|
|
WebsitePublisher="luca0N!"
|
|
|
|
# Copyright
|
|
#
|
|
# Now we'll define a couple of copyright-related options which will be used to
|
|
# generate copyright disclaimer text shown in the footer of all pages.
|
|
|
|
# WebsiteCopyrightHolder specifies the copyright holder of the content
|
|
# published on the website. Multiple copyright holders can be specified here.
|
|
WebsiteCopyrightHolder="luca0N!"
|
|
# This defines the copyright year or copyright years of the published content.
|
|
WebsiteCopyrightYears="2020-2022"
|
|
# This defines the license of the published content.
|
|
WebsiteContentLicense="CC-BY-SA-4.0"
|
|
|
|
[Blogs]
|
|
# Multiple blog areas are allowed here.
|
|
|
|
# Start with Blog1<...>, and then increase the number '1' to add another
|
|
# blog.
|
|
#
|
|
# BlogNPath specifies the path (relative to this directory) containing articles that belong to this blog.
|
|
# BlogNName specifies the name of the current blog.
|
|
# BlogNDescription specifies the description of the current blog. It will be used in the RSS feed.
|
|
# BlogNDir specifies the name of the subdirectory that will store all articles for that specific blog.
|
|
|
|
Blog1Path="./blog/announcements/"
|
|
Blog1Name="Blog de Anúncios do SRL"
|
|
Blog1Description="Anúncios para o Serviços de Rede luca0N!"
|
|
Blog1Dir="announcements"
|
|
|
|
Blog2Path="./blog/blog/"
|
|
Blog2Name="Blog do luca0N!"
|
|
Blog2Description="Blog pessoal do luca0N!"
|
|
Blog2Dir="blog"
|
|
|