Skip to content

Commit 2ef14b8

Browse files
committed
Updating layouts.
1 parent e6bd66c commit 2ef14b8

14 files changed

+731
-665
lines changed

_layouts/default.html

Lines changed: 86 additions & 80 deletions
Original file line numberDiff line numberDiff line change
@@ -40,97 +40,103 @@
4040
});
4141

4242
</script>
43-
4443
<body>
45-
<div id="accord-logo">
46-
&#x222e;</div>
47-
<div id="right-buttons">
48-
<a href="http://www.linkedin.com/in/cesarrsouza" target="_blank">
49-
<img id="linkedin" class="icons" src="images/metro/appbar.social.linkedin.color.png" /></a>
50-
<a href="http://www.youtube.com/playlist?list=PLb8yJtCIm8PQRC0t8re7b5mOCP8s6iBk9"
51-
target="_blank">
52-
<img id="youtube" class="icons" src="images/metro/appbar.youtube.color.png" /></a>
53-
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=N4Q6YQSPWN8BG"
54-
target="_blank">
55-
<img id="paypal" class="icons" src="images/metro/appbar.paypal.color.png" /></a>
56-
</div>
44+
<div id="whole-site-wrapper">
45+
46+
47+
<div id="left">
48+
<div id="accord-logo">
49+
&#x222e;</div>
50+
<header>
51+
<h1>
52+
Sample applications</h1>
53+
</header>
54+
<aside>
55+
<h1>
56+
Accord.NET</h1>
57+
<ul>
58+
<li id="li-intro"><a href="index.html">Introduction</a></li>
59+
<li id="li-samples"><a href="samples.html">Sample apps</a></li>
60+
<li id="li-docs"><a href="docs/Index.html">Documentation</a></li>
61+
<li id="li-issues"><a href="https://code.google.com/p/accord/issues/list">Report issues</a></li>
62+
<li id="li-submit"><a href="submit.html">Contribute</a></li>
63+
<li id="li-publications"><a href="publications.html">Publications</a></li>
64+
<li id="li-forums"><a href="https://groups.google.com/forum/#!forum/accord-net">Discussion
65+
forums</a></li>
66+
<li id="li-faq"><a href="faq.html">Common questions</a></li>
67+
<li id="li-contact"><a href="contact.html">Contact</a></li>
68+
<li id="li-license"><a href="license.html">License</a></li>
69+
<li id="li-about"><a href="about.html">About</a></li>
70+
</ul>
71+
<div id="download-buttons">
72+
<ul>
73+
<li><a href="https://github.com/accord-net/framework/releases/download/v2.10.0/Accord.NET.Framework-2.10.0.exe">
74+
Download <strong>Installer</strong> <span class="version">(v2.10)</span></a></li>
75+
<li><a href="https://github.com/accord-net/framework/releases/download/v2.10.0/Accord.NET.Framework-2.10.0.rar">
76+
Download <strong>Archive</strong> <span class="version">(v2.10)</span></a></li>
77+
</ul>
78+
</div>
79+
<div class="google-plus">
80+
<!-- Place this tag where you want the +1 button to render. -->
81+
<div class="g-plusone" data-href="http://accord-net.github.io"></div>
82+
83+
<!-- Place this tag after the last +1 button tag. -->
84+
<script type="text/javascript">
85+
(function () {
86+
var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
87+
po.src = 'https://apis.google.com/js/plusone.js';
88+
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
89+
})();
90+
</script>
91+
</div>
92+
</aside>
93+
</div>
5794

5895

59-
<header>
60-
<h1>
61-
Sample applications</h1>
62-
</header>
63-
64-
65-
<aside>
66-
<h1>
67-
Accord.NET</h1>
68-
<ul>
69-
<li id="li-intro"><a href="index.html">Introduction</a></li>
70-
<li id="li-samples"><a href="samples.html">Sample apps</a></li>
71-
<li id="li-docs"><a href="docs/Index.html">Documentation</a></li>
72-
<li id="li-issues"><a href="https://code.google.com/p/accord/issues/list">Report issues</a></li>
73-
<li id="li-submit"><a href="submit.html">Contribute</a></li>
74-
<li id="li-forums"><a href="https://groups.google.com/forum/#!forum/accord-net">Discussion forums</a></li>
75-
<li id="li-faq"><a href="faq.html">Common questions</a></li>
76-
<li id="li-contact"><a href="contact.html">Contact</a></li>
77-
<li id="li-about"><a href="about.html">About</a></li>
78-
</ul>
79-
80-
<div id="download-buttons">
81-
<ul>
82-
<li><a href="https://github.com/accord-net/framework/releases/download/v2.10.0/Accord.NET.Framework-2.10.0.exe">
83-
Download <strong>Installer</strong> <span class="version">(v2.10)</span></a></li>
84-
<li><a href="https://github.com/accord-net/framework/releases/download/v2.10.0/Accord.NET.Framework-2.10.0.rar">
85-
Download <strong>Archive</strong> <span class="version">(v2.10)</span></a></li>
86-
</ul>
87-
</div>
8896

89-
<div class="google-plus">
90-
<!-- Google + -->
91-
<script type="text/javascript">
92-
(function () {
93-
var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
94-
po.src = 'https://apis.google.com/js/plusone.js';
95-
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
96-
})();
97-
</script>
97+
<div id="middle">
98+
99+
<section>
100+
{{ content }}
101+
</section>
102+
103+
{% if page.comments %}
104+
<div id="comments">
105+
{% include disqus.html %}
106+
</div>
107+
{% endif %}
98108
</div>
99-
</aside>
100109

101110

102-
<section>
103-
104-
{{ content }}
111+
<div id="right">
112+
<a href="http://www.linkedin.com/in/cesarrsouza" target="_blank">
113+
<img id="linkedin" class="icons" src="images/metro/appbar.social.linkedin.color.png" /></a>
114+
<a href="http://www.youtube.com/playlist?list=PLb8yJtCIm8PQRC0t8re7b5mOCP8s6iBk9"
115+
target="_blank">
116+
<img id="youtube" class="icons" src="images/metro/appbar.youtube.color.png" /></a>
117+
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=N4Q6YQSPWN8BG"
118+
target="_blank">
119+
<img id="paypal" class="icons" src="images/metro/appbar.paypal.color.png" /></a>
120+
</div>
105121

106-
</section>
107122

108123

109-
{% if page.comments %}
110-
<div id="comments">
111-
<div class="clearfix">
112-
{% include disqus.html %}
124+
<div id="paypal-tooltip" style="display: none">
125+
<p>
126+
Have you found this software useful?
127+
<br />
128+
Consider donating just <strong>US$10</strong>
129+
<br />
130+
so it can get even better!</p>
131+
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=N4Q6YQSPWN8BG"
132+
rel="nofollow" target="_blank">
133+
<img align="center" src="https://www.paypalobjects.com/en_US/i/btn/btn_donate_LG.gif"
134+
width="92" height="26" /></a>
135+
<p>
136+
This software is completely free and will<br />
137+
<strong>always stay free</strong>
138+
. Enjoy!
113139
</div>
114140
</div>
115-
{% endif %}
116-
117-
118-
<div id="paypal-tooltip" style="display: none">
119-
<p>
120-
Have you found this software useful?
121-
<br />
122-
Consider donating just <strong>US$10</strong>
123-
<br />
124-
so it can get even better!</p>
125-
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=N4Q6YQSPWN8BG"
126-
rel="nofollow" target="_blank">
127-
<img align="center" src="https://www.paypalobjects.com/en_US/i/btn/btn_donate_LG.gif"
128-
width="92" height="26" /></a>
129-
<p>
130-
This software is completely free and will<br />
131-
<strong>always stay free</strong>
132-
. Enjoy!
133-
</div>
134-
135141
</body>
136142
</html>

contact.html

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
layout: default
3+
title: Sample applications
4+
comments: true
5+
---
6+
7+
<p>
8+
Those are the sample applications available in the framework:
9+
</p>
10+

default-content.html

Lines changed: 0 additions & 118 deletions
This file was deleted.

faq.html

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
layout: default
3+
title: Sample applications
4+
comments: true
5+
---
6+
7+
<p>
8+
Those are the sample applications available in the framework:
9+
</p>
10+

0 commit comments

Comments
 (0)