<?php
/**
 * Theme Name: tfcdn
 * Author: TingleFlow
 * Description: A blank WordPress theme by TingleFlow.
 * Version: 1.0
 */

// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
    exit;
}
?>

<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
    <meta charset="<?php bloginfo( 'charset' ); ?>">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title><?php bloginfo( 'name' ); ?></title>
    <link rel="stylesheet" href="<?php echo get_stylesheet_uri(); ?>">
    <?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
    <?php wp_body_open(); ?>
    <main>
        <h1>Welcome to the tfcdn Theme</h1>
        <p>This is the index.php file. Customize your theme here.</p>
    </main>
    <?php wp_footer(); ?>
</body>
</html>
