-
Notifications
You must be signed in to change notification settings - Fork 2
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
84 changed files
with
10,765 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
## | ||
## generic gitignore file. | ||
## - amirmc | ||
## | ||
|
||
################################################# | ||
# OS Specific # | ||
################################################# | ||
# Linux | ||
*~ | ||
# Mac OSX | ||
.DS_Store | ||
.Thumbs | ||
.AppleDouble | ||
.LSOverride | ||
Icon | ||
._* | ||
.Spotlight-V100 | ||
.Trashes | ||
# Windows | ||
Thumbs.db | ||
ehthumbs.db | ||
Desktop.ini | ||
$RECYCLE.BIN/ | ||
|
||
################################################# | ||
# Jekyll # | ||
################################################# | ||
_site/* | ||
_theme_packages/* | ||
|
||
################################################# | ||
# Code # | ||
################################################# | ||
# OCaml | ||
*.annot | ||
*.cmo | ||
*.cma | ||
*.cmi | ||
*.a | ||
*.o | ||
*.cmx | ||
*.cmxs | ||
*.cmxa | ||
# Ruby | ||
.rbenv-version | ||
.rvmrc | ||
|
||
################################################# | ||
# Editors # | ||
################################################# | ||
# LaTeX | ||
*.acn | ||
*.acr | ||
*.alg | ||
*.aux | ||
*.bbl | ||
*.blg | ||
*.dvi | ||
*.fdb_latexmk | ||
*.glg | ||
*.glo | ||
*.gls | ||
*.idx | ||
*.ilg | ||
*.ind | ||
*.ist | ||
*.lof | ||
*.log | ||
*.lot | ||
*.maf | ||
*.mtc | ||
*.mtc0 | ||
*.nav | ||
*.nlo | ||
*.out | ||
*.pdfsync | ||
*.ps | ||
*.snm | ||
*.synctex.gz | ||
*.toc | ||
*.vrb | ||
*.xdy | ||
*.tdo | ||
# Sublime Text | ||
*.sublime-workspace | ||
# vim | ||
.*.sw[a-z] | ||
*.un~ | ||
Session.vim | ||
.netrwhist | ||
|
||
################################################# | ||
# Misc # | ||
################################################# | ||
# No idea... | ||
!.gitkeep |
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,76 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title></title> | ||
|
||
<meta name="author" content="Nymote"> | ||
|
||
<!-- Enable responsive viewport --> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<!-- <link href="/assets/themes/twitter-mod/css/bootstrap-responsive.min.css" rel="stylesheet"> --> | ||
|
||
<!-- Le HTML5 shim, for IE6-8 support of HTML elements --> | ||
<!--[if lt IE 9]> | ||
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script> | ||
<![endif]--> | ||
|
||
<!-- Le styles --> | ||
<link href="/assets/themes/twitter-mod/css/readable.min.css" rel="stylesheet"> | ||
<link href="/assets/themes/twitter-mod/css/style.css?body=1" rel="stylesheet" type="text/css" media="all"> | ||
<link href="/assets/themes/twitter-mod/css/style-custom.css?body=1" rel="stylesheet" type="text/css" media="all"> | ||
|
||
<!-- Le fav and touch icons --> | ||
<!-- Update these with your own images | ||
<link rel="shortcut icon" href="images/favicon.ico"> | ||
<link rel="apple-touch-icon" href="images/apple-touch-icon.png"> | ||
<link rel="apple-touch-icon" sizes="72x72" href="images/apple-touch-icon-72x72.png"> | ||
<link rel="apple-touch-icon" sizes="114x114" href="images/apple-touch-icon-114x114.png"> | ||
--> | ||
|
||
<!-- atom & rss feed --> | ||
<link href="/atom.xml" type="application/atom+xml" rel="alternate" title="Sitewide ATOM Feed"> | ||
<link href="/rss.xml" type="application/rss+xml" rel="alternate" title="Sitewide RSS Feed"> | ||
|
||
</head> | ||
|
||
<body> | ||
<div class="navbar"> | ||
<div class="navbar-inner"> | ||
<div class="container-narrow"> | ||
<div class="row-fluid"> | ||
<a class="brand" href="/">Nymote</a> | ||
<ul class="nav"> | ||
<li><a href="http://nymote.org/overview">Overview</a></li> | ||
<li><a href="http://nymote.org/tools">Tools</a></li> | ||
<li><a href="http://nymote.org/blog">Blog</a></li> | ||
<li><a href="http://nymote.org/about">About Us</a></li> | ||
</ul> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="container-narrow"> | ||
<div class="content"> | ||
<div class="page-header"> | ||
<h1></h1> | ||
</div> | ||
|
||
<div class="row-fluid"> | ||
<div class="span12"> | ||
<h1 id='page_not_found'>Page not found</h1> | ||
<p>Sorry, the content you’re looking for doesn’t seem to be here.</p> | ||
<p>Perhaps you could try looking from the <a href='http://nymote.org'>front page at nymote.org</a>.</p> | ||
<p><img alt='' src='../images/404-alpha.png' /></p> | ||
</div> | ||
</div> | ||
</div> | ||
<hr> | ||
<footer> | ||
<p>© 2012-2013 Nymote</p> | ||
</footer> | ||
</div> | ||
</body> | ||
</html> | ||
|
Oops, something went wrong.