-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
59 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
_site/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
dartcode.org |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
collections: | ||
pages: | ||
output: true | ||
permalink: /:name | ||
defaults: | ||
- | ||
scope: | ||
path: "" | ||
type: pages | ||
values: | ||
layout: page |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<html> | ||
<head> | ||
<title>{{ page.title | escape }}</title> | ||
<link rel="stylesheet" href="css/main.scss" /> | ||
</head> | ||
<body> | ||
<h1>{{ page.title | escape }}</h1> | ||
|
||
{{ content }} | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- | ||
title: "Quickly Switching between SDK Versions" | ||
--- | ||
|
||
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam vel sem ut elit eleifend congue a et sem. Cras ultrices maximus ligula, eget ultrices turpis sodales eget. Sed molestie dolor vel mi placerat congue. Nullam ante purus, convallis a suscipit sed, scelerisque sit amet dui. Proin luctus feugiat purus vitae auctor. Ut nec tempus ipsum. Nam tempus ligula at mi luctus, vel cursus urna aliquam. Mauris velit nisi, lobortis nec suscipit nec, faucibus nec ipsum. | ||
|
||
```js | ||
{ | ||
`dart.sdkPaths`: [ | ||
"a", | ||
"b" | ||
], | ||
`dart.flutterSdkPaths`: [ | ||
"a", | ||
"b" | ||
], | ||
} | ||
``` | ||
|
||
Cras quis auctor quam. Maecenas vel libero lacinia, ullamcorper nulla id, gravida nulla. Nullam sit amet rutrum ex. Suspendisse tincidunt tristique leo non luctus. Quisque velit dui, elementum in porttitor ut, scelerisque vel diam. Pellentesque at elementum arcu, sed tempor lorem. Maecenas venenatis nisi a ante ultrices, egestas porta urna tristique. Ut malesuada felis risus, id consequat dui accumsan eget. Donec imperdiet lorem libero, nec imperdiet nisi vulputate eget. Praesent tortor ex, vestibulum at auctor vel, rutrum nec enim. Mauris posuere volutpat metus ac dapibus. Phasellus suscipit ipsum nec nunc ultrices, et rhoncus leo maximus. Ut aliquet fringilla dapibus. Aenean ultricies pretium velit, nec sodales augue pretium eu. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
body { | ||
font-family: Arial, Helvetica, sans-serif; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
--- | ||
<script> | ||
location.replace("https://marketplace.visualstudio.com/items?itemName=Dart-Code.dart-code"); | ||
</script> | ||
<!-- | ||
<ul> | ||
{% for page in site.pages %} | ||
<li><a href="{{ page.url | escape }}">{{ page.title | escape }}</a></li> | ||
{% endfor %} | ||
</ul> | ||
--> |