Example #1
0
def filename_to_title(filename):
   

    if utils.is_homepage(filename):
        return 'Home'

    return utils.filename_to_title(filename)
Example #2
0
 def is_homepage(self):
     return utils.is_homepage(self.input_path)