|
1 | 1 | <!DOCTYPE html> |
2 | 2 | <html lang="en"> |
3 | | - <head> |
4 | | - <meta charset="utf-8"> |
5 | | - <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> |
6 | | - <meta name="theme-color" content="#000000"> |
7 | | - <!-- |
| 3 | + |
| 4 | +<head> |
| 5 | + <meta charset="utf-8"> |
| 6 | + <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> |
| 7 | + <meta name="theme-color" content="#000000"> |
| 8 | + |
| 9 | + <meta name="keywords" content="python, regex, regexp, regular expression, regular expressions, text, linguistic, text analyzer"> |
| 10 | + <meta name="description" content="PyRegex is a online regular expression tester to check validity of regular expressions in the Python language regex subset."> |
| 11 | + <meta name="author" content="Rodolfo Carvalho (rodolfo@infweb.net)"> |
| 12 | + <!-- |
8 | 13 | manifest.json provides metadata used when your web app is added to the |
9 | 14 | homescreen on Android. See https://developers.google.com/web/fundamentals/engage-and-retain/web-app-manifest/ |
10 | 15 | --> |
11 | | - <link rel="manifest" href="%PUBLIC_URL%/manifest.json"> |
12 | | - <link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico"> |
13 | | - <!-- |
| 16 | + <link rel="manifest" href="%PUBLIC_URL%/manifest.json"> |
| 17 | + <link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico"> |
| 18 | + <link href='http://fonts.googleapis.com/css?family=Ubuntu:300,400,700' rel='stylesheet' type='text/css'> |
| 19 | + |
| 20 | + <!-- |
14 | 21 | Notice the use of %PUBLIC_URL% in the tags above. |
15 | 22 | It will be replaced with the URL of the `public` folder during the build. |
16 | 23 | Only files inside the `public` folder can be referenced from the HTML. |
|
19 | 26 | work correctly both with client-side routing and a non-root public URL. |
20 | 27 | Learn how to configure a non-root public URL by running `npm run build`. |
21 | 28 | --> |
22 | | - <title>React App</title> |
23 | | - </head> |
24 | | - <body> |
25 | | - <noscript> |
26 | | - You need to enable JavaScript to run this app. |
27 | | - </noscript> |
28 | | - <div id="root"></div> |
29 | | - <!-- |
30 | | - This HTML file is a template. |
31 | | - If you open it directly in the browser, you will see an empty page. |
| 29 | + <title>PyRegex</title> |
| 30 | +</head> |
32 | 31 |
|
33 | | - You can add webfonts, meta tags, or analytics to this file. |
34 | | - The build step will place the bundled scripts into the <body> tag. |
| 32 | +<body> |
| 33 | + <noscript> |
| 34 | + You need to enable JavaScript to run this app. |
| 35 | + </noscript> |
| 36 | + <div id="root"></div> |
| 37 | + <footer class="main"> |
| 38 | + <div class="container"> |
| 39 | + <p> |
| 40 | + Made by |
| 41 | + <a href="https://www.github.com/rscarvalho">Rodolfo Carvalho</a> |
| 42 | + ( |
| 43 | + <a href="https://www.github.com/rscarvalho">@rscarvalho</a>) |
| 44 | + <span class="footer__featured-separator"> |
| 45 | + ● |
| 46 | + </span> |
| 47 | + Inspired by |
| 48 | + <a href="http://rubular.com"> Rubular</a> |
| 49 | + <br/> Code licensed under the |
| 50 | + <a href="https://www.gnu.org/licenses/gpl-2.0.html#SEC1">GNU General Public License version 2</a> |
| 51 | + <p> |
| 52 | + <a href="https://www.heroku.com" title="Hosted by Heroku"> |
| 53 | + <img src="https://logos.heroku.com/images/heroku-logo-light-88x31.png" alt="Hosted by Heroku" /> |
| 54 | + </a> |
| 55 | + <span class="footer__featured-separator"> |
| 56 | + ● |
| 57 | + </span> |
| 58 | + <a href="https://travis-ci.org/rscarvalho/pyregex" title="Tested with Travis CI"> |
| 59 | + <img src="https://travis-ci.org/rscarvalho/pyregex.png?branch=master" alt="Travis CI Status"> |
| 60 | + </a> |
| 61 | + <span class="footer__featured-separator"> |
| 62 | + ● |
| 63 | + </span> |
| 64 | + <a href="http://www.python.org" title="Python Powered"> |
| 65 | + <img src="https://www.python.org/static/community_logos/python-powered-w-70x28.png" alt="Python Powered"> |
| 66 | + </a> |
| 67 | + </p> |
| 68 | + </div> |
| 69 | + </footer> |
| 70 | + <a href="https://github.com/rscarvalho/pyregex" class="hidden-sm hidden-xs"> |
| 71 | + <img style="position: absolute; top: 0; right: 0; border: 0; z-index: 999999" src="https://s3.amazonaws.com/github/ribbons/forkme_right_red_aa0000.png" |
| 72 | + alt="Fork me on GitHub"> |
| 73 | + </a> |
| 74 | +</body> |
35 | 75 |
|
36 | | - To begin the development, run `npm start` or `yarn start`. |
37 | | - To create a production bundle, use `npm run build` or `yarn build`. |
38 | | - --> |
39 | | - </body> |
40 | 76 | </html> |
0 commit comments