-
-
Notifications
You must be signed in to change notification settings - Fork 0
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
12 changed files
with
169 additions
and
8 deletions.
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
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,8 @@ | ||
--- | ||
title : "What's in the Jar?" | ||
video : "Ell9uPVREgc" | ||
type: "cookie" | ||
date: "2021-04-19" | ||
|
||
--- | ||
|
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,7 @@ | ||
--- | ||
title : "Wrap Cell" | ||
video : "UXXlX9B7LjE" | ||
type: "cookie" | ||
date: "2021-04-26" | ||
|
||
--- |
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 @@ | ||
--- | ||
title : "Grammar Cookies" | ||
date: 2019-05-14T14:46:10+06:00 | ||
inMenu: true | ||
type: grammar-cookies | ||
|
||
--- | ||
|
||
Grammar Cookies is series of short tutorial videos around Grammar Cells. Grammar Cells is a extension to JetBrains Meta Programming System that makes writing consistent textual editors easy. Each video is around 5 minutes and focuses on one use case of grammar cells. New episodes are released every week. | ||
|
||
You can find the code used in the tutorials [here](https://github.com/coolya/grammar-cookies) on Github. |
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,19 @@ | ||
<div class="cookies"> | ||
<div class="container"> | ||
<div class="col-md-6 col-md-offset-3 text-center fh5co-heading"> | ||
<h2>{{ .Title}} </h2> | ||
</div> | ||
|
||
<div class="col-md-12"> | ||
<p>{{ .Content }}</p> | ||
</div> | ||
|
||
|
||
|
||
<div class="col-md-12 text-center"> | ||
{{ partial "youtube.html" .}} | ||
</div> | ||
|
||
</div> | ||
|
||
</div> <!-- END fh5co-services --> |
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,41 @@ | ||
<!DOCTYPE html> | ||
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]--> | ||
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]--> | ||
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]--> | ||
<!--[if gt IE 8]> <html class="no-js"> <![endif]--> | ||
<html> | ||
<head> | ||
{{ partial "header.html" . }} | ||
</head> | ||
<body> | ||
|
||
|
||
<div class="fh5co-page"> | ||
<div id="fh5co-container"> | ||
|
||
{{ partial "nav-pages.html" . }} | ||
|
||
<div data-section="mission"> | ||
<div class="container"> | ||
<div class="col-md-6 col-md-offset-3 text-center fh5co-heading"> | ||
<h2> {{.Title}}</h2> | ||
</div> | ||
<div class="col-md-12"> | ||
{{.Content}} | ||
</div> | ||
</div> | ||
</div> | ||
|
||
|
||
|
||
{{ if .Site.Params.footer.enable }} | ||
{{ partial "footer.html" .}} | ||
{{ end }} | ||
|
||
</div> | ||
</div> | ||
|
||
{{ partial "js.html" .}} | ||
|
||
</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,43 @@ | ||
<!DOCTYPE html> | ||
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]--> | ||
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]--> | ||
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]--> | ||
<!--[if gt IE 8]> <html class="no-js"> <![endif]--> | ||
<html> | ||
<head> | ||
{{ partial "header.html" . }} | ||
</head> | ||
<body> | ||
|
||
|
||
<div class="fh5co-page"> | ||
<div id="fh5co-container"> | ||
|
||
{{ partial "nav-pages.html" . }} | ||
|
||
<div data-section="mission"> | ||
<div class="container"> | ||
<div class="col-md-6 col-md-offset-3 text-center fh5co-heading"> | ||
<h2> {{.Title}}</h2> | ||
</div> | ||
<div class="col-md-12"> | ||
{{.Content}} | ||
</div> | ||
</div> | ||
</div> | ||
|
||
{{ range sort (where .Resources "Type" "cookie") "Date" "asc"}} | ||
{{ .Render "cookie"}} | ||
{{ end }} | ||
|
||
{{ if .Site.Params.footer.enable }} | ||
{{ partial "footer.html" .}} | ||
{{ end }} | ||
|
||
</div> | ||
</div> | ||
|
||
{{ partial "js.html" .}} | ||
|
||
</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
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,18 @@ | ||
<div class="gototop js-top"> | ||
<a href="#" class="js-gotop"><i class="icon-arrow-up"></i></a> | ||
</div> | ||
<!-- jQuery --> | ||
<script src="/js/jquery.min.js"></script> | ||
<!-- jQuery Easing --> | ||
<script src="/js/jquery.easing.1.3.js"></script> | ||
<!-- Bootstrap --> | ||
<script src="/js/bootstrap.min.js"></script> | ||
<!-- Waypoints --> | ||
<script src="/js/jquery.waypoints.min.js"></script> | ||
<!-- Stellar Parallax --> | ||
<script src="/js/jquery.stellar.min.js"></script> | ||
<!-- Magnific Popup --> | ||
<script src="/js/jquery.magnific-popup.min.js"></script> | ||
<script src="/js/magnific-popup-options.js"></script> | ||
<!-- Main JS --> | ||
<script src="/js/main.js"></script> |
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,10 @@ | ||
<div class="js-sticky"> | ||
<div class="fh5co-main-nav"> | ||
<div class="container"> | ||
<div class="fh5co-menu-1"> | ||
<a href="/" class="external" >{{ with .Site.Params.nav }}{{ if isset . "logo" }}<img src={{ .logo | absURL }} height="20" alt="">{{ end }}{{ if (not (isset . "logo")) }}Home{{ end }}{{ end }}</a> | ||
<a href="/grammar-cookies" class="external">Grammar Cookies</a> | ||
</div> | ||
</div> | ||
</div> | ||
</div> |
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
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 @@ | ||
/grammarcookies /grammar-cookies |