View Indexframe Shtml Link -
<frameset cols="20%,80%"> <frame src="menu.shtml?view=indexframe" name="navigation"> <frame src="main.shtml" name="content"> </frameset>
Example generated HTML inside an indexframe : view indexframe shtml link
<!--#include virtual="/global/header.shtml" --> <frameset cols="20%,80%"> <frame src="menu
If your included file isn't showing up, check this list: Finally, she tested on different browsers and confirmed
: Tells the user exactly what the technical frame is doing. The "Mysterious & Curated" Approach Best for art projects, blogs, or experimental sites.
She also cleaned up the server rules: a rewrite that forced directories to indexframe.shtml was changed to only apply to the site root, not to subdirectories. Finally, she tested on different browsers and confirmed the images loaded correctly in the content frame and direct visits to gallery URLs worked too.
<!DOCTYPE html> <html lang="en"> <head> <title>My SSI Site</title> <link rel="stylesheet" href="/css/main.css"> </head> <body> <!-- Inject the Navigation --> <!--#include virtual="/includes/nav.shtml" --> <!-- Main Content Area (The IndexFrame body) --> <div class="content"> <!--#include virtual="/includes/hero.shtml" --> <p>Welcome to the live site.</p> <!--#include virtual="/includes/footer.shtml" --> </div>

