Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update links to examples #111

Open
wants to merge 1 commit into
base: gh-pages
Choose a base branch
from
Open
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
10 changes: 5 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -152,12 +152,12 @@ <h3>The stylesheet</h3>
.column(3);
}
</pre>
<p><a href="http://semantic.gs/examples/fixed/fixed.html">The result</a> is two side-by-side columns with the original HTML remaining uncompromised.</p>
<p><a href="examples/fixed/fixed.html">The result</a> is two side-by-side columns with the original HTML remaining uncompromised.</p>

<a id="tutorials"></a>
<h2>Tutorials</h2>
<h3>Fluid layouts</h3>
<p>Semantic.gs can work in either pixels or percentages. While it defaults to pixels, <a href="http://semantic.gs/examples/fluid/fluid.html">fluid layouts</a> can be achieved by adding one additional variable: <code>@total-width: 100%;</code>.</p>
<p>Semantic.gs can work in either pixels or percentages. While it defaults to pixels, <a href="examples/fluid/fluid.html">fluid layouts</a> can be achieved by adding one additional variable: <code>@total-width: 100%;</code>.</p>
<pre>
@import 'grid.less';

Expand All @@ -175,7 +175,7 @@ <h3>Fluid layouts</h3>
}
</pre>
<h3>Responsive layouts</h3>
<p>The Semantic Grid, with its clean separation between markup and presentation, is an ideal tool for powering <a href="http://semantic.gs/examples/responsive/responsive.html">adaptive layouts</a> using @media queries.</p>
<p>The Semantic Grid, with its clean separation between markup and presentation, is an ideal tool for powering <a href="examples/responsive/responsive.html">adaptive layouts</a> using @media queries.</p>
<pre>
article {
.column(6);
Expand All @@ -194,7 +194,7 @@ <h3>Responsive layouts</h3>
}
</pre>
<h3>Nested columns</h3>
<p>Multiple levels of <a href="http://semantic.gs/examples/nested/nested.html">nested columns</a> are no problem — even for fluid layouts. Consider this HTML structure:</p>
<p>Multiple levels of <a href="examples/nested/nested.html">nested columns</a> are no problem — even for fluid layouts. Consider this HTML structure:</p>
<pre>
&lt;article&gt;
&lt;ul&gt;
Expand Down Expand Up @@ -227,7 +227,7 @@ <h3>Nested columns</h3>
}
</pre>
<h3>Push and Pull</h3>
<p>The <code>.push()</code> and <code>.pull()</code> mixins allow you apply left and right indents to your columns. Here is an <a href="http://semantic.gs/examples/pushpull/pushpull.html">example page</a>.</p>
<p>The <code>.push()</code> and <code>.pull()</code> mixins allow you apply left and right indents to your columns. Here is an <a href="examples/pushpull/pushpull.html">example page</a>.</p>
<pre>
// LESS
article {
Expand Down