... | in view_board_page.naml |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
<override_macro name="view_board_page">
<n.app_html>
<head>
<!-- Navigation Bar -->
<div style="background: linear-gradient(135deg, #ff6f00, #ff9800); padding: 10px; text-align: center; font-family: Arial, sans-serif;">
<a href="https://www.techtastetv.com/" style="color: white; text-decoration: none; margin: 0 15px; font-weight: bold;">Back to Home</a>
<a href="https://www.techtastetv.com/contact" style="color: white; text-decoration: none; margin: 0 15px; font-weight: bold;">Contact Us</a>
</div>
<n.app_title/>
<n.board_table_stylesheet/>
</head>
<body>
<n.topics_action_link/>
<n.people_action_link/>
<n.options_action_menu/>
<n.board_table.>
<n.subcategories_column title="[n.current_node.node_link class='second-font category-link'/]"/>
<n.topic_count_column width="5em"/>
<n.post_count_column width="5em"/>
<n.last_post_column/>
</n.board_table.>
<n.forum_footer/>
</body>
</n.app_html>
</override_macro>
|
... | in view_board.naml |
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
<macro name="view_board_page">
<n.app_html>
<head>
<n.app_title/>
<n.board_table_stylesheet/>
</head>
<body>
<n.topics_action_link/>
<n.people_action_link/>
<n.options_action_menu/>
<n.board_table.>
<n.subcategories_column title="[n.current_node.node_link class='second-font category-link'/]"/>
<n.topic_count_column width="5em"/>
<n.post_count_column width="5em"/>
<n.last_post_column/>
</n.board_table.>
<n.forum_footer/>
</body>
</n.app_html>
</macro>
|
Free forum by Nabble | Edit this page |