<script type="text/javascript" src="<?php 
echo static_scripts_url('comment.js');
?>
"></script>

<div id="ctn-new-comment">
	<section id="new-comment">
		<div id="status"></div>
		<h3>Nuevo comentario</h3>
		<form action="" method="post" class="stack-form" id="form-new-comment">
			<label>Nombre:</label>
			<input type="text" name="comment_user_name" id="user_name">

			<label>Email:</label>
			<input type="text" name="comment_user_email" id="user_email">

			<label>Web:</label>
			<input type="text" name="comment_user_url" id="user_url">

			<label>Comentario:</label>
			<textarea name="comment_content" id="comment_content"></textarea>

			<input type="hidden" name="comment_parent" id="comment-parent" value="0">
			<input type="hidden" name="article_id" id="comment_article" value="<?php 
echo $article->article_id;
?>
">

			<button type="submit">Comentar</button>
		</form>
		<div id="cancel-reply">
Example #2
0
<!DOCTYPE html>
<html>
<head>
	<title><?php 
echo $title;
?>
</title>
	<link rel="stylesheet" type="text/css" href="<?php 
echo static_styles_url('styles.css');
?>
">
	<script type="text/javascript" src="<?php 
echo static_scripts_url('jquery.js');
?>
"></script>
</head>
<body>
	<div class="container">
		<header class="header">
			<h1><a href="<?php 
echo base_url();
?>
">Mi Blog</a></h1>
		</header>