ronyman-theme 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (46) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +52 -0
  4. data/_config.yml +63 -0
  5. data/_includes/about.html +30 -0
  6. data/_includes/categories.html +27 -0
  7. data/_includes/companies.svg +7 -0
  8. data/_includes/contact.html +14 -0
  9. data/_includes/footer.html +50 -0
  10. data/_includes/header.html +78 -0
  11. data/_includes/privacy.html +15 -0
  12. data/_includes/projects.html +38 -0
  13. data/_includes/tags.html +27 -0
  14. data/_includes/terms.html +12 -0
  15. data/_layouts/default.html +7 -0
  16. data/_layouts/page.html +10 -0
  17. data/_layouts/post.html +59 -0
  18. data/assets/brand/Allinpages-logo.ico +0 -0
  19. data/assets/brand/Allinpages-logo.svg +11 -0
  20. data/assets/brand/favicon.ico +0 -0
  21. data/assets/brand/getweb-dev.ico +0 -0
  22. data/assets/brand/getweb-dev.svg +11 -0
  23. data/assets/brand/logo.png +0 -0
  24. data/assets/brand/ronyman.com.png +0 -0
  25. data/assets/brand/ronyman.com.svg +11 -0
  26. data/assets/brand/user.png +0 -0
  27. data/assets/brand/w3news.ico +0 -0
  28. data/assets/brand/w3news.svg +11 -0
  29. data/assets/css/about.sass +19 -0
  30. data/assets/css/animate.css +3340 -0
  31. data/assets/css/categories.sass +47 -0
  32. data/assets/css/contact.sass +18 -0
  33. data/assets/css/index.sass +31 -0
  34. data/assets/css/main.sass +99 -0
  35. data/assets/css/morphext.css +3 -0
  36. data/assets/css/page.sass +11 -0
  37. data/assets/css/post.sass +73 -0
  38. data/assets/css/projects.sass +57 -0
  39. data/assets/css/syntax.css +164 -0
  40. data/assets/css/tags.sass +47 -0
  41. data/assets/js/about.js +8 -0
  42. data/assets/js/main.js +5 -0
  43. data/assets/js/morphext.min.js +1 -0
  44. data/assets/js/post.js +7 -0
  45. data/assets/js/projects.js +13 -0
  46. metadata +101 -0
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 8ceec4ef439e0f7454ea34f2d446674f79f3a0e0780bc8c4f68ef9f220f52a2c
4
+ data.tar.gz: 327702b2c2602381dc62e89cdc2b0a5ee573e14db31f3aff60d32bd5f01c66eb
5
+ SHA512:
6
+ metadata.gz: 87309fa2bf39a286d295363c09b8edef32dde4ff4b9f9074ae133577137eb36cefd211cefbc3e8837b899dff5ef858319c79b2d97be0c949422bb72f79ced0fe
7
+ data.tar.gz: 4bd3a269286fac35a41ddc3dcd1bf69399b28b51853d0574eadd41d06a10b18ad47c532d2de8dd4ea204f8bc52b3560a7b89480075b096224949056311cdb23a
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2020 ronyman.com
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,52 @@
1
+ # ronyman-theme
2
+
3
+ Welcome to your new Jekyll theme! In this directory, you'll find the files you need to be able to package up your theme into a gem. Put your layouts in `_layouts`, your includes in `_includes`, your sass files in `_sass` and any other assets in `assets`.
4
+
5
+ To experiment with this code, add some sample content and run `bundle exec jekyll serve` – this directory is setup just like a Jekyll site!
6
+
7
+ TODO: Delete this and the text above, and describe your gem
8
+
9
+
10
+ ## Installation
11
+
12
+ Add this line to your Jekyll site's `Gemfile`:
13
+
14
+ ```ruby
15
+ gem "ronyman-theme"
16
+ ```
17
+
18
+ And add this line to your Jekyll site's `_config.yml`:
19
+
20
+ ```yaml
21
+ theme: ronyman-theme
22
+ ```
23
+
24
+ And then execute:
25
+
26
+ $ bundle
27
+
28
+ Or install it yourself as:
29
+
30
+ $ gem install ronyman-theme
31
+
32
+ ## Usage
33
+
34
+ TODO: Write usage instructions here. Describe your available layouts, includes, sass and/or assets.
35
+
36
+ ## Contributing
37
+
38
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/hello. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
39
+
40
+ ## Development
41
+
42
+ To set up your environment to develop this theme, run `bundle install`.
43
+
44
+ Your theme is setup just like a normal Jekyll site! To test your theme, run `bundle exec jekyll serve` and open your browser at `http://localhost:4000`. This starts a Jekyll server using your theme. Add pages, documents, data, etc. like normal to test your theme's contents. As you make modifications to your theme and to your content, your site will regenerate and you should see the changes in the browser after a refresh, just like normal.
45
+
46
+ When your theme is released, only the files in `_layouts`, `_includes`, `_sass` and `assets` tracked with Git will be bundled.
47
+ To add a custom directory to your theme-gem, please edit the regexp in `ronyman-theme.gemspec` accordingly.
48
+
49
+ ## License
50
+
51
+ The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
52
+
@@ -0,0 +1,63 @@
1
+ # Welcome to Jekyll!
2
+ #
3
+ # This config file is meant for settings that affect your whole blog, values
4
+ # which you are expected to set up once and rarely edit after that. If you find
5
+ # yourself editing this file very often, consider using Jekyll's data files
6
+ # feature for the data you need to update frequently.
7
+ #
8
+ # For technical reasons, this file is *NOT* reloaded automatically when you use
9
+ # 'bundle exec jekyll serve'. If you change this file, please restart the server process.
10
+
11
+ # Site settings
12
+ # These are used to personalize your new site. If you look in the HTML files,
13
+ # you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
14
+ # You can create any custom variable you would like, and they will be accessible
15
+ # in the templates via {{ site.myvariable }}.
16
+ title: ronyman.com
17
+ description: > # this means to ignore newlines until "baseurl:"
18
+ royman.com | Your webstie can be created in a minute.
19
+ baseurl: ""
20
+ url: "ronyman.com"
21
+ permalink: /:year/:month/:day/:title
22
+ repository:
23
+ paginate: 10
24
+ paginate_path: "/blog/page:num/"
25
+
26
+ # configurations
27
+ github_profile: "https://github.com/ronyman-com"
28
+ user: "ronyman"
29
+ user_email: "mail@ronyman.com"
30
+ contact_url: "/contact"
31
+ google_tracking_id: "G-51NN5S891P"
32
+ google_site_verification: "185407266"
33
+ disqus_shortname: "ronyman"
34
+
35
+ # Build settings
36
+ theme: ronyman-theme
37
+ markdown: kramdown
38
+ gem:
39
+ - jekyll-feed
40
+ - jekyll-paginate
41
+ - jekyll-seo-tag
42
+ - jekyll-sitemap
43
+ - Gemfile
44
+ - Gemfile.lock
45
+ plugins:
46
+ - jekyll-feed
47
+ - jekyll-seo-tag
48
+
49
+ # Pagination Settings
50
+ pagination:
51
+ enabled: true
52
+ per_page: 3
53
+ offset: 2
54
+ permalink: '/page/:num/'
55
+ title: ':title - page :num of :max'
56
+ limit: 0
57
+ sort_field: 'date'
58
+ sort_reverse: true
59
+
60
+
61
+ sass:
62
+ style: compressed
63
+ future: true
@@ -0,0 +1,30 @@
1
+ <div class="col s12 tag-div">
2
+ <div class="user-pic center-align">
3
+ <a href="{{site.github_profile}}" target="_blank"><img class="circle hoverable z-depth-1" src="{{site.baseurl}}/assets/brand/user.png"></a>
4
+ </div>
5
+ <div class="user-intro center-align">
6
+ <h4 class="">Let to know ronyman.com</h4>
7
+ </div>
8
+ <div class="user-content">
9
+ <p>
10
+ we've got a huge dream. Creating something new and get done in different results.Keep brand reconized by the users that really big deals to me. I knew it wont be easy but it could be if we try the best.
11
+ </p>
12
+ <p>
13
+ royman.com is a parent website who developing web and software in own plateform and intergrating to the world well-kown developers as such as google,facebook, twitter and mores in order to make thing get done and more easier for the users to blend in.
14
+ </p>
15
+
16
+ <p>
17
+ To get more information related to our project please fill free to the <a href="/projects"> projects in gitHub</a> link.
18
+ </p>
19
+
20
+ <p>
21
+ We had released some websites and functioning thru our brand.<br>
22
+
23
+ <a href="https://getweb.dev/" target="_blank">getweb.dev</a><br>
24
+ <a href="https://w3news.net/" target="_blank">w3news.net</a><br>
25
+ <a href="https://allinpages.com/" target="_blank">allinpages.com</a>
26
+ </p>
27
+
28
+
29
+ </div>
30
+ </div>
@@ -0,0 +1,27 @@
1
+ <div class="col s12 cat-div">
2
+ <div class="cat-list">
3
+ {% for cat in site.categories %}
4
+ {% capture test %}{{cat[0] | slice: 0}}{% endcapture %}
5
+ {% capture testup %}{{cat[0] | slice: 0 | upcase}}{% endcapture %}
6
+ <a class="cat-chip" href="#{{cat[0] | slugify}}{% if test == testup %}_cap{% endif %}"><div class="chip z-depth-1">{{cat[0]}}</div></a>
7
+ {% endfor %}
8
+ </div>
9
+ <div class="divider"></div>
10
+ <div class="cat-index">
11
+ {% for cat in site.categories %}
12
+ {% capture test %}{{cat[0] | slice: 0}}{% endcapture %}
13
+ {% capture testup %}{{cat[0] | slice: 0 | upcase}}{% endcapture %}
14
+ <h4 id="{{cat[0] | slugify}}{% if test == testup %}_cap{% endif %}">{{cat[0]}}</h4>
15
+ <ul class="cat-post">
16
+ {% for post in cat[1] %}
17
+ <a class="post-title" href="{{site.baseurl}}{{post.url}}" target="_blank">
18
+ <li>
19
+ {{post.title}}
20
+ <small class="post-date">{{post.date | date_to_string}}</small>
21
+ </li>
22
+ </a>
23
+ {% endfor %}
24
+ </ul>
25
+ {% endfor %}
26
+ </div>
27
+ </div>
@@ -0,0 +1,7 @@
1
+
2
+ <img src="/assets/brand/Allinpages-logo.ico">
3
+ <img src="/assets/brand/getweb-dev.ico">
4
+ <img src="/assets/brand/w3news.ico">
5
+
6
+
7
+
@@ -0,0 +1,14 @@
1
+ <div class="col s12 tag-div">
2
+ <div class="user-pic center-align">
3
+ <a href="{{site.github_profile}}" target="_blank"><img class="circle hoverable z-depth-1" src="{{site.baseurl}}/assets/brand/favicon.ico"></a>
4
+ </div>
5
+ <div class="user-intro center-align">
6
+ <h4 class="">Contact us.</h4>
7
+ </div>
8
+ <div class="user-content">
9
+ <p>
10
+ mail@ronyman.com.
11
+ </p>
12
+
13
+ </div>
14
+ </div>
@@ -0,0 +1,50 @@
1
+ </main>
2
+ <footer class="page-footer teal">
3
+ <div class="container">
4
+ <div class="row">
5
+ <div class="col s12">
6
+ <img src="{{site.baseurl}}/assets/brand/ronyman.com.svg"width=5% alt="logo"/>
7
+ <p class="grey-text text-lighten-4">{{site.description}}</p>
8
+ </div>
9
+ </div>
10
+ </div>
11
+ <div class="footer-copyright">
12
+ <div class="container">
13
+ &#xA9; {{"now" | date: "%Y"}} {{site.title}}. All rights reserved.
14
+ <footer> |
15
+ <a href="/Terms" target="_blank">Terms</a> |
16
+ <a href="/Privacy" target="_blank">Privacy</a> |
17
+ <a href="/contact" target="_blank">Support</a> |
18
+
19
+
20
+ </footer>
21
+ </div>
22
+ </div>
23
+ </footer>
24
+ <script src="//code.jquery.com/jquery-2.2.4.min.js" integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=" crossorigin="anonymous"></script>
25
+ <script src="//cdnjs.cloudflare.com/ajax/libs/materialize/0.99.0/js/materialize.min.js"></script>
26
+ {% for js in layout.js %}
27
+ {% if js contains "//" %}
28
+ <script src="{{js}}"></script>
29
+ {% else %}
30
+ <script src="{{site.baseurl}}/assets/js/{{js}}"></script>
31
+ {% endif %}
32
+ {% endfor %}
33
+ {% for js in page.js %}
34
+ {% if js contains "//" %}
35
+ <script src="{{js}}"></script>
36
+ {% else %}
37
+ <script src="{{site.baseurl}}/assets/js/{{js}}"></script>
38
+ {% endif %}
39
+ {% endfor %}
40
+ {% if site.google_tracking_id %}
41
+ <script>
42
+ (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)})
43
+ (window,document,'script','//www.google-analytics.com/analytics.js','ga');
44
+ ga('create', '{{site.google_tracking_id}}', 'auto');
45
+ ga('send', 'pageview');
46
+ </script>
47
+ {% endif %}
48
+ <script src="{{site.baseurl}}/assets/js/main.js"></script>
49
+ </body>
50
+ </html>
@@ -0,0 +1,78 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1">
6
+ <title>
7
+ {% if page.title %}
8
+ {{ page.title | escape }}
9
+ {% else %}
10
+ {{ site.title | escape }}
11
+ {% endif %}
12
+ </title>
13
+ <link rel="shortcut icon" type="image/x-icon" href="{{site.baseurl}}/assets/brand/favicon.ico">
14
+ <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/materialize/0.99.0/css/materialize.min.css">
15
+ <link rel="stylesheet" href="//fonts.googleapis.com/icon?family=Material+Icons">
16
+ <link rel="stylesheet" href="{{site.baseurl}}/assets/css/main.css">
17
+ {% for css in layout.css %}
18
+ {% if css contains "//" %}
19
+ <link rel="stylesheet" href="{{css}}">
20
+ {% else %}
21
+ <link rel="stylesheet" href="{{site.baseurl}}/assets/css/{{css}}">
22
+ {% endif %}
23
+ {% endfor %}
24
+ {% for css in page.css %}
25
+ {% if css contains "//" %}
26
+ <link rel="stylesheet" href="{{css}}">
27
+ {% else %}
28
+ <link rel="stylesheet" href="{{site.baseurl}}/assets/css/{{css}}">
29
+ {% endif %}
30
+ {% endfor %}
31
+ <link rel="stylesheet" href="{{site.baseurl}}/assets/css/syntax.css">
32
+ <link rel="alternate" type="application/rss+xml" title="RSS" href="{{site.baseurl}}/feed.xml">
33
+ <link rel="sitemap" type="application/xml" title="Sitemap" href="{{site.baseurl}}/sitemap.xml">
34
+
35
+ <!-- Global site tag (gtag.js) - Google Analytics -->
36
+ <script async src="https://www.googletagmanager.com/gtag/js?id=G-51NN5S891P"></script>
37
+ <script>
38
+ window.dataLayer = window.dataLayer || [];
39
+ function gtag(){dataLayer.push(arguments);}
40
+ gtag('js', new Date());
41
+
42
+ gtag('config', 'G-51NN5S891P');
43
+ </script>
44
+ </head>
45
+ <body>
46
+ <header>
47
+ <nav class="top-nav teal">
48
+ <div class="nav-wrapper">
49
+ <div class="container">
50
+ <a class="page-title" href="{{site.baseurl}}/">{{site.title}}</a>
51
+ </div>
52
+ </div>
53
+ </nav>
54
+ <div class="container">
55
+ <a href="#" data-activates="slide-out" class="button-collapse top-nav full hide-on-large-only">
56
+ <i class="material-icons">menu</i>
57
+ </a>
58
+ </div>
59
+ <ul id="slide-out" class="side-nav fixed">
60
+ <li>
61
+ <div class="userView">
62
+ <div class="background"></div>
63
+ <a href="{{site.github_profile}}" target="_blank"><img class="circle z-depth-2" src="{{site.baseurl}}/assets/brand/user.png"></a>
64
+ <span class="white-text name">{{site.user}}</span>
65
+ <span class="white-text email">{{site.user_email}}</span>
66
+ </div>
67
+ </li>
68
+ <li><a class="waves-effect" href="{{site.baseurl}}/"><i class="material-icons">home</i>Home</a></li>
69
+ <li><a class="waves-effect" href="{{site.baseurl}}/projects"><i class="material-icons">description</i>Projects</a></li>
70
+ <li><a class="waves-effect" href="{{site.baseurl}}/categories"><i class="material-icons">sort</i>Categories</a></li>
71
+ <li><a class="waves-effect" href="{{site.baseurl}}/tags"><i class="material-icons">label</i>Tags</a></li>
72
+ <li><a class="waves-effect" href="{{site.baseurl}}/feed.xml" target="_blank"><i class="material-icons">rss_feed</i>RSS</a></li>
73
+ <li><div class="divider"></div></li>
74
+ <li><a class="waves-effect" href="{{site.baseurl}}/about"><i class="material-icons">person</i>About</a></li>
75
+ <li><a class="waves-effect" href="{{site.baseurl}}/contact"><i class="material-icons">email</i>Contact</a></li>
76
+ </ul>
77
+ </header>
78
+ <main>
@@ -0,0 +1,15 @@
1
+ <div class="col s12 tag-div">
2
+
3
+ <div class="user-content">
4
+ Last updated on 27-09-2020 @ronyman.com. All rights reserved.<br>
5
+
6
+ <h3>Privacy.</h3>
7
+ ronyman.com is your reliable to store and keep your information privately and safely. We don't share your privacy information to the third parties without your permistion, as we have mentioned in the terms of use.
8
+
9
+ <h3>Data.</h3>
10
+ We provided the easy way and shortcut for you to get in our services thru your reliable social authonication such as google and facebook.Or you can sing in directly to our data base.
11
+
12
+ <h3>Hooks.</h3>
13
+ Our hook interface provided to make you easy login on your browser and will store your information within 30days or you can skip by sign out to prevent default.
14
+ </div>
15
+ </div>
@@ -0,0 +1,38 @@
1
+
2
+ <div class="col s12 switch">
3
+ <label>
4
+ Show forked projects
5
+ <input class="fork-switch" type="checkbox" checked="1" onchange="toggleForked()">
6
+ <span class="lever"></span>
7
+ </label>
8
+ </div>
9
+ {% for repo in sorted_repos %}
10
+ <div class="col s12 m6 l4" {% if repo.fork %}id="forked"{% endif %}>
11
+ <div class="card hoverable">
12
+ <div class="card-image waves-effect waves-block waves-light geopattern activator" data-pattern-id="{{repo.name}}">
13
+ <i class="material-icons waves-effect waves-block waves-light">more_vert</i>
14
+ <a class="card-title center-align valign-wrapper" href="{{repo.html_url}}" target="_blank">{{repo.name}}</a>
15
+ </div>
16
+ <div class="card-content valign-wrapper center-align activator">
17
+ <span class="activator grey-text text-darken-1">{{repo.description}}</span>
18
+ </div>
19
+ <div class="card-reveal">
20
+ <div class="card-reveal-content">
21
+ <span class="card-title grey-text text-darken-4">Statistics<i class="material-icons right">close</i></span>
22
+ <span class="tooltipped" data-position="bottom" data-delay="30" data-tooltip="{{repo.stargazers_count}} stars">
23
+ <i class="material-icons">star</i>
24
+ {{repo.stargazers_count}}
25
+ </span>
26
+ <span class="tooltipped" data-position="bottom" data-delay="30" data-tooltip="{{repo.forks_count}} forks">
27
+ <i class="material-icons">call_split</i>
28
+ {{repo.forks_count}}
29
+ </span>
30
+ <span class="tooltipped" data-position="bottom" data-delay="30" data-tooltip="Last updated:{{repo.updated_at}}">
31
+ <i class="material-icons">access_time</i>
32
+ <time datetime="{{repo.updated_at}}" title="{{repo.updated_at}}">{{repo.updated_at | date: '%Y-%m-%d'}}</time>
33
+ </span>
34
+ </div>
35
+ </div>
36
+ </div>
37
+ </div>
38
+ {% endfor %}
@@ -0,0 +1,27 @@
1
+ <div class="col s12 tag-div">
2
+ <div class="tag-list">
3
+ {% for tag in site.tags %}
4
+ {% capture test %}{{tag[0] | slice: 0}}{% endcapture %}
5
+ {% capture testup %}{{tag[0] | slice: 0 | upcase}}{% endcapture %}
6
+ <a class="tag-chip" href="#{{tag[0] | slugify}}{% if test == testup %}_cap{% endif %}"><div class="chip z-depth-1">{{tag[0]}}</div></a>
7
+ {% endfor %}
8
+ </div>
9
+ <div class="divider"></div>
10
+ <div class="tag-index">
11
+ {% for tag in site.tags %}
12
+ {% capture test %}{{tag[0] | slice: 0}}{% endcapture %}
13
+ {% capture testup %}{{tag[0] | slice: 0 | upcase}}{% endcapture %}
14
+ <h4 id="{{tag[0] | slugify}}{% if test == testup %}_cap{% endif %}">{{tag[0]}}</h4>
15
+ <ul class="tag-post">
16
+ {% for post in tag[1] %}
17
+ <a class="post-title" href="{{site.baseurl}}{{post.url}}" target="_blank">
18
+ <li>
19
+ {{post.title}}
20
+ <small class="post-date">{{post.date | date_to_string}}</small>
21
+ </li>
22
+ </a>
23
+ {% endfor %}
24
+ </ul>
25
+ {% endfor %}
26
+ </div>
27
+ </div>