summaryrefslogtreecommitdiff
path: root/gstudio/templates/skeleton.html
blob: 8261123f74bd5dc2c0f9d6f3d6c32d8060e46b75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{% load gstudio_tags i18n %}
{% get_tags as objecttype_tags %}

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xml:lang="{{ LANGUAGE_CODE }}" lang="{{ LANGUAGE_CODE }}" version="-//W3C//DTD XHTML 1.1//EN" xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <meta http-equiv="content-type" content="text/html; charset=utf-8" />
    <meta http-equiv="cache-control" content="public" />
    <meta name="robots" content="follow, all" />
    <meta name="language" content="{{ LANGUAGE_CODE }}" />
    <meta name="description" content="{% block meta-description %}Demonstration of the Gstudio Blog application.{% endblock %}" />
    <meta name="keywords" content="{% block meta-keywords %}django, blog, gstudio, {{ objecttype_tags|join:", "}}{% endblock %}" />
    <meta name="author" content="gnowgi" />
    {% block meta %}{% endblock %}
    <link rel="pingback" href="/xmlrpc/" />
    <link rel="shortcut icon" href="{{ STATIC_URL }}gstudio/img/favicon.ico" />
    <link rel="home" href="{% url gstudio_objecttype_archive_index %}" />
    <link rel="stylesheet" type="text/css" media="screen, projection" href="{{ STATIC_URL }}gstudio/css/screen.css" />
    <link rel="stylesheet" type="text/css" media="print" href="{{ STATIC_URL }}gstudio/css/print.css" />
    <!--[if lt IE 8]>
	<link rel="stylesheet" type="text/css" media="screen, projection" href="{{ STATIC_URL }}gstudio/css/ie.css" />
    <![endif]-->
    {% block link %}{% endblock %}
    {% block script %}{% endblock %}

    <title>Gnowledge Studio - {% block title %}{% endblock %}</title>
  </head>
  <body id="gstudio">
    <div class="container">

	<blockquote>
	  <h3>A workspace for constructing and publishing knowledge networks.</h3>
	</blockquote>
	<div id="breadcrumbs" class="span-24 last">
	  / {% block breadcrumbs %}{% endblock %}
	</div>
      </div>
      <div id="body" class="span-24 last">
	<div id="content" class="hfeed span-16 border">
	  {% block content %}
	  <h3>The content block need to be overrided!</h3>
	  {% endblock %}
	</div>
	<div id="sidebar" class="span-8 last">
	  <div class="welcome">
	    <h3>Welcome!</h3>
	    <p>
	      This application is an attempt to collaborative
	      framework for online construction and publication of
	      knowledge networks and ontologies. 
            </p>
            <p>
	      Currently gnowledge studio provides support for
	      Metatypes, Objecttypes, Objects, Relationtypes,
	      Relations, Attributetypes, Attributes, Systemtypes,
	      Systems, Processtypes, and Processes. 

              <a href="http://sbox.gnowledge.org/accounts/register">Register</a>
              at this sandbox site to see the gnowledge studio.
	    </p>
	  </div>
	  {% block sidebar %}
	  {% endblock %}
	</div>
      </div>
      <div id="footer" class="span-24 last">
	<p>Powered by <a href="http://www.djangoproject.com">Django</a> and <a href="http://github.com/gnowgi/django-gstudio">Gstudio {{ GSTUDIO_VERSION }}</a>.</p>
      </div>
    </div>
  </body>
</html>