<?php

    require 'lib/tiny-html-minifier.php';

    $html = file_get_contents(__DIR__ . '/templates/template_default.html');

    echo TinyMinify::html($html, $options = [
        'collapse_whitespace' => true
    ]);