Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion idpython/templates/base.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
<<<<<<< HEAD
<!doctype html>
<!-- paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/ -->
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
Expand Down Expand Up @@ -32,6 +31,9 @@

</head>

{% load cms_tags sekizai_tags %}
{% render_block "css" %}

<body>
<!-- Prompt IE 6 users to install Chrome Frame. Remove this if you support IE 6.
chromium.org/developers/how-tos/chrome-frame-getting-started -->
Expand Down Expand Up @@ -105,6 +107,10 @@ <h1>Python adalah bahasa pemrograman yang memungkinkan Anda untuk bekerja dengan
<hr>
</div>
</div>
<div class='row'>
{% placeholder base_content %}
{% block base_content %} {% endblock%}
</div>
<div class = 'row'>
<div class = 'fourcol'>
<h2>BERITA</h2>
Expand Down Expand Up @@ -179,4 +185,5 @@ <h3>Lorem Ipsum</h3>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/vendor/jquery-1.7.2.min.js"><\/script>')</script>
</body>
{% render_block "js" %}
</html>
2 changes: 1 addition & 1 deletion idpython/templates/template_1.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% extends "base.html" %}
{% load cms_tags %}
{% load cms_tags sekizai_tags %}

{% block base_content %}
{% placeholder template_1_content %}
Expand Down