diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2016-05-19 19:19:00 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2016-05-19 19:19:00 +0300 |
commit | c665e5d48c934054cb662adcc2b671bc30f246d0 (patch) | |
tree | 97f576a2b975aca55de34178db7095f559c9014f | |
parent | add .gitattributes (diff) | |
download | jekyll-theme-c665e5d48c934054cb662adcc2b671bc30f246d0.tar.gz jekyll-theme-c665e5d48c934054cb662adcc2b671bc30f246d0.zip |
rename the project
-rw-r--r-- | README.md | 10 | ||||
-rw-r--r-- | _config.yml | 2 | ||||
-rw-r--r-- | _includes/footer.html | 2 | ||||
-rw-r--r-- | _includes/header.html | 2 | ||||
-rw-r--r-- | _includes/sidebar.html | 2 | ||||
-rw-r--r-- | _posts/2015-07-03-std-call-once-bug-in-visual-studio-2012-2013.md | 4 |
6 files changed, 11 insertions, 11 deletions
@@ -1,8 +1,8 @@ -# C++ tips +# C++ notes Personal C++ notes. Hosted on [GitHub Pages](https://pages.github.com) at -https://egor-tensin.github.io/cpp_tips/. +https://egor-tensin.github.io/cpp-notes/. ## Installation @@ -48,7 +48,7 @@ In particular, it from the posts, * sets `baseurl` to an empty string so that the website can be accessed from local web server's root directory (i.e. from http://localhost:4000/ instead - of http://localhost:4000/cpp_tips/). + of http://localhost:4000/cpp-notes/). ## Accessing via file:// @@ -56,13 +56,13 @@ Jekyll doesn't provide native support for generating a static website which can be viewed without a web server. One easy workaround might be to `wget` the website and convert the links: - wget -k -r http://localhost:4000/ + wget --convert-links --recursive http://localhost:4000/ ## Licensing This project, including all of the files and their contents, is licensed under the terms of the MIT License. -See [LICENSE.txt](LICENSE.txt) for details. +See LICENSE.txt for details. This website is build upon the Twitter Bootstrap framework, which is also MIT Licensed and copyright 2015 Twitter. diff --git a/_config.yml b/_config.yml index 61ba5ba..0bfcb54 100644 --- a/_config.yml +++ b/_config.yml @@ -1,4 +1,4 @@ -baseurl: /cpp_tips +baseurl: /cpp-notes gems: [jekyll-paginate] paginate: 10 include_comments: true diff --git a/_includes/footer.html b/_includes/footer.html index 6dd984e..e94a1de 100644 --- a/_includes/footer.html +++ b/_includes/footer.html @@ -6,7 +6,7 @@ <div style="display: table; width: 100%;"> <div style="display: table-row;"> <div style="display: table-cell;"> - <div class="text-center text-muted"><small>This project is licensed under the terms of the MIT License. See <a href="https://github.com/egor-tensin/cpp_tips/tree/gh-pages#licensing">Licensing</a> for details.</small></div> + <div class="text-center text-muted"><small>This project is licensed under the terms of the MIT License. See <a href="https://github.com/egor-tensin/cpp-notes/tree/gh-pages#licensing">Licensing</a> for details.</small></div> </div> </div> <div style="display: table-row;"> diff --git a/_includes/header.html b/_includes/header.html index 312f9a7..75b2b97 100644 --- a/_includes/header.html +++ b/_includes/header.html @@ -5,7 +5,7 @@ <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> - <title>{{ page.title }} - C++ tips - Egor Tensin</title> + <title>{{ page.title }} - C++ notes - Egor Tensin</title> {% include bootstrap_css.html %} diff --git a/_includes/sidebar.html b/_includes/sidebar.html index b96f29f..cc4e87a 100644 --- a/_includes/sidebar.html +++ b/_includes/sidebar.html @@ -1,7 +1,7 @@ <h4>About the project</h4> <p>Personal C++ notes. Feel free to contribute or contact me.</p> <div class="list-group reasonable-width"> - <a class="list-group-item" href="//github.com/egor-tensin/cpp_tips"><span class="glyphicon glyphicon-home"></span> GitHub repository</a> + <a class="list-group-item" href="//github.com/egor-tensin/cpp-notes"><span class="glyphicon glyphicon-home"></span> GitHub repository</a> <a class="list-group-item" href="mailto:Egor.Tensin@gmail.com"><span class="glyphicon glyphicon-envelope"></span> Egor.Tensin@gmail.com</a> </div> <h4>Latest posts</h4> diff --git a/_posts/2015-07-03-std-call-once-bug-in-visual-studio-2012-2013.md b/_posts/2015-07-03-std-call-once-bug-in-visual-studio-2012-2013.md index f5b7eca..39fd93a 100644 --- a/_posts/2015-07-03-std-call-once-bug-in-visual-studio-2012-2013.md +++ b/_posts/2015-07-03-std-call-once-bug-in-visual-studio-2012-2013.md @@ -15,7 +15,7 @@ Library implementation shipped with Microsoft Visual Studio 2012/2013. This post, including code samples, is licenced under the terms of the MIT License. See -[LICENSE.txt](https://github.com/egor-tensin/cpp_tips/blob/gh-pages/LICENSE.txt) +[LICENSE.txt](https://github.com/egor-tensin/cpp-notes/blob/gh-pages/LICENSE.txt) for details. ## Introduction @@ -281,7 +281,7 @@ simple example above to misbehave. The complete code sample to demonstrate the misbehaviour described above can be found at -[https://github.com/egor-tensin/cpp_tips/tree/gh-pages/src/posts/std_call_once_bug_in_visual_studio_2012_2013](https://github.com/egor-tensin/cpp_tips/tree/gh-pages/src/posts/std_call_once_bug_in_visual_studio_2012_2013). +[https://github.com/egor-tensin/cpp-notes/tree/gh-pages/src/posts/std_call_once_bug_in_visual_studio_2012_2013](https://github.com/egor-tensin/cpp-notes/tree/gh-pages/src/posts/std_call_once_bug_in_visual_studio_2012_2013). ## Resolution |