This plugin will insert HTML snippets into the 'template.html' of a theme.

PROCEDURE:
Create an 'include' folder within the theme folder. In this folder, create HTML snippet files such as 'disclaimer.html'.

example (disclaimer.html):
----- clip -----
<div>
	<p>
		The webmasters claim NO ownership of the contributions to this web site and receive NO financial gain for this web site. Besides the free time and dedication invested to this web site, the ads that appear are strictly sponsoring the costs of maintenance of it: such as hosting, technical support and domain renewal. Please contact us if you are the owner of something on this web site and would like it removed, but please have the legit proof that claims you are who you say you are.
	</p>
</div>
----- clip -----
Just use simple HTML tags with no DOCTYPE, HTML, HEAD or BODY tags.

To place the snippet in the theme 'template.html' file, just add a marker at the appropriate place within the file in this form:
{!disclaimer.html!}

NOTES:
Snippets can include other snippets.
example (disclaimer.html):
----- clip -----
{!disclaimerA.html!}
{!disclaimerB.html!}
{!disclaimerC.html!}
----- clip -----
