def render(project=None):
    """Render projects or a specfic project to 'out' directory."""
    site = TarbellSite(os.path.dirname(os.path.abspath(__file__)))
    out = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'out')
    site.render_templates(out, project)
Exemple #2
0
def render(project=None):
    """Render projects or a specfic project to '_out' directory."""
    site = TarbellSite(os.path.dirname(os.path.abspath(__file__)))
    out = os.path.join(os.path.dirname(os.path.abspath(__file__)), '_out')
    site.render_templates(out, project)