Skip to content

Instantly share code, notes, and snippets.

@willmendesneto
Last active December 11, 2015 05:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save willmendesneto/4551035 to your computer and use it in GitHub Desktop.
Save willmendesneto/4551035 to your computer and use it in GitHub Desktop.
Inserindo Twig Template Engine no Codeigniter via Composer Localilzação dos arquivos: template.html.twig => application/views/template.html.twig
<!DOCTYPE html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>{% block title %}Template Twig{% endblock %}</title>
<meta name="description" content="">
<meta name="author" content="">
<meta name="viewport" content="width=device-width">
</head>
<body>
<div class="container">
{% block content %}
conteúdo a ser inserido
{% endblock %}
<hr>
<footer>
<p>&copy; Company 2012</p>
</footer>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment