Example #1
0
    def get(self):
        posts = get_all_parsed_posts()
        
        params = get_site_info()
        
        template_file_name = "index.html"

        self.render(template_file_name, posts = posts, params = params)
Example #2
0
def generate_index():
    posts = markdown_parser.get_all_parsed_posts()
    params = get_site_info()
    snippets = get_3rd_party_snippet()
    html = TemplateParser.parse(options.current_template_dir, "index.html", posts=posts, params=params, snippets=snippets)
    
    index_file = open("build/index.html", "wb")
    index_file.write(html)
Example #3
0
    def get(self):
        posts = get_all_parsed_posts()

        params = get_site_info()

        template_file_name = "index.html"

        self.render(template_file_name, posts=posts, params=params)
Example #4
0
def generate_index():
    posts = markdown_parser.get_all_parsed_posts()
    params = get_site_info()
    html = TemplateParser.parse(options.current_template_dir,
                                "index.html",
                                posts=posts,
                                params=params)

    index_file = open("build/index.html", "wb")
    index_file.write(html)
Example #5
0
def generate_posts():
    dest = options.build_dir + os.sep + "post"
    mkdir(dest)
    posts = markdown_parser.get_all_parsed_posts(brief=False)
    params = get_site_info()
    snippets = get_3rd_party_snippet()
    for post in posts:
        html = TemplateParser.parse(options.current_template_dir, "post.html", post=post, params=params, snippets = snippets)
        post_file = open(dest + os.sep + post["post_name"] + ".html", "wb")
        post_file.write(html)
Example #6
0
def generate_posts():
    dest = options.build_dir + os.sep + "post"
    mkdir(dest)
    posts = markdown_parser.get_all_parsed_posts(brief=False)

    params = get_site_info()

    for post in posts:
        html = TemplateParser.parse(options.current_template_dir,
                                    "post.html",
                                    post=post,
                                    params=params)
        post_file = open(dest + os.sep + post["post_name"] + ".html", "wb")
        post_file.write(html)