Feat(UI): Blog Home page as standalone view file.
This commit is contained in:
25
models/model_view_blog_home.py
Normal file
25
models/model_view_blog_home.py
Normal file
@@ -0,0 +1,25 @@
|
||||
"""
|
||||
Project: PARTS Website
|
||||
Author: Edward Middleton-Smith
|
||||
Precision And Research Technology Systems Limited
|
||||
|
||||
Technology: Blog View Models
|
||||
Feature: Home View Model
|
||||
|
||||
Description:
|
||||
Data model for home view
|
||||
"""
|
||||
|
||||
# internal
|
||||
from models.model_view_base import Model_View_Base
|
||||
# from routes import bp_home
|
||||
# external
|
||||
from typing import ClassVar
|
||||
|
||||
|
||||
class Model_View_Blog_Home(Model_View_Base):
|
||||
|
||||
def __init__(self, hash_page_current=Model_View_Base.HASH_PAGE_BLOG_HOME):
|
||||
super().__init__(hash_page_current=hash_page_current)
|
||||
self._title = 'Blog Home'
|
||||
|
||||
Reference in New Issue
Block a user