blob: ad360102568a237ef2e63fcd44a87ae238b2215a (
plain) (
blame)
1
2
3
4
5
6
7
8
|
from __future__ import print_function, unicode_literals
from nikola import Nikola
import conf
SITE = Nikola(**conf.__dict__)
SITE.scan_posts()
print("You can now access your configuration as conf and your site engine "
"as SITE")
|