cs/SablonaStrankyProjektu: template.html

File template.html, 3.0 KB (added by Zuzana Nevěřilová, 10 years ago)
Line 
1<!DOCTYPE html>
2<html lang="en">
3  <head>
4    <title>[project name]
5    </title>
6    <link href="style.css" rel="stylesheet" type="text/css"/>
7    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
8    <meta name="keywords" content="[keywords]"/>
9    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js" type="text/javascript"></script>
10    <script type="text/javascript">
11<!--
12  jQuery(document).ready(function() {
13    var bibtexElements = document.getElementsByClassName("bibtex");
14    var showBib = "show BibTeX";
15    var hideBib = "hide BibTeX";
16    for (var i = 0; i<bibtexElements.length; i++) {
17       var element = bibtexElements[i];
18       var parent = element.parentNode;
19       var wrapper = document.createElement("div");
20                        wrapper.className = "bibtex-element";
21       var heading = document.createElement("div");
22       heading.className = "bibtex-heading";
23       heading.innerHTML = showBib;
24       parent.replaceChild(wrapper, element);
25       wrapper.appendChild(heading);
26       wrapper.appendChild(element);
27       element.style.display = 'none';
28    }
29
30    // drop-down bibtex box
31    jQuery(".bibtex-heading").click(function(){
32       Query(this).next(".bibtex").slideToggle(500);
33       if (this.innerHTML == showBib) {
34           this.innerHTML = hideBib;
35       } else {
36           this.innerHTML = showBib;
37       }
38    });
39 });
40-->
41  </script>
42  </head>
43
44  <body>
45 
46  <div id="text">
47    <h1>[project name]</h1>
48    <h2><a id="sec01">About [...]</a></h2>
49    <p>[description]
50    </p>
51
52    <h2><a id="sec02">Examples of [...]</a></h2>
53    [example screenshot, screencast etc.]
54
55    <h2><a id="sec03">Run [...]</a></h2>
56    [how to run the application, installation guide, command line interface description, etc.]
57    [example data]
58
59    <h2><a id="sec04">Publications</a></h2>
60     <ul>
61       <li> [copy bibliography entry from IS MU]
62         <div class="bibtex">
63@inproceedings{951816,
64.
65.
66.
67}
68         </div>
69</li>
70<li>[another bibliography entry]</li>
71  </ul>
72  <h2><a id="sec05">Changelog</a></h2>
73  <ul>
74        <li>version 2014-12-13: simple prototype (no configuration)</li>
75        <li>version 2014-10-03: project work started</li>
76  </ul>
77  <h2><a id="sec06">Acknowledgement</a></h2>
78  <p>[if the project was developed within a grant project, specify it]
79  </p>
80 
81  <h2><a id="sec07">Licensing and Sources</a></h2>
82<p>The software is provided under the terms and conditions of the
83<a href="http://nlp.fi.muni.cz/en/LicenceWebService">NLP Centre Web Services Licence</a>.
84
85  </div> 
86  <div id="menu">
87    <ul>
88      <li><a href="#sec01">About [...]</a></li>
89      <li><a href="#sec02">Examples of [...]</a></li>
90      <li><a href="#sec03">Run [...]</a></li>
91      <li><a href="#sec04">Publications</a></li>
92      <li><a href="#sec05">Changelog</a></li>
93      <li><a href="#sec06">Acknowledgement</a></li>
94      <li><a href="#sec07">Licensing and Sources</a></li>
95    </ul>
96  </div>
97  </body>
98</html>