|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
| 3 | + |
| 4 | + <head> |
| 5 | + |
| 6 | + <meta charset="utf-8"> |
| 7 | + <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> |
| 8 | + <meta name="description" content=""> |
| 9 | + <meta name="author" content=""> |
| 10 | + |
| 11 | + <title>Revo Framework - Event Sourcing, CQRS and DDD for C#/.NET.</title> |
| 12 | + |
| 13 | + <!-- Bootstrap core CSS --> |
| 14 | + <link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet"> |
| 15 | + |
| 16 | + <!-- Custom styles for this template --> |
| 17 | + <link href="css/small-business.css" rel="stylesheet"> |
| 18 | + |
| 19 | + <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"> |
| 20 | + <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png"> |
| 21 | + <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"> |
| 22 | + <link rel="manifest" href="/site.webmanifest"> |
| 23 | + <link rel="mask-icon" href="/safari-pinned-tab.svg" color="#444444"> |
| 24 | + <meta name="msapplication-TileColor" content="#da532c"> |
| 25 | + <meta name="theme-color" content="#ffffff"> |
| 26 | + |
| 27 | + </head> |
| 28 | + |
| 29 | + <body> |
| 30 | + |
| 31 | + <!-- Navigation --> |
| 32 | + <nav class="navbar navbar-expand-lg navbar-dark bg-dark fixed-top"> |
| 33 | + <div class="container"> |
| 34 | + <h1><a class="navbar-brand" href="./"><img src="./revo-logo-inv.png" alt="Revo framework" width="36" height="36" class="mr-4" />Revo Framework</a></h1> |
| 35 | + <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation"> |
| 36 | + <span class="navbar-toggler-icon"></span> |
| 37 | + </button> |
| 38 | + <div class="collapse navbar-collapse" id="navbarResponsive"> |
| 39 | + <ul class="navbar-nav ml-auto"> |
| 40 | + <li class="nav-item active"> |
| 41 | + <a class="nav-link" href="./">About |
| 42 | + <span class="sr-only">(current)</span> |
| 43 | + </a> |
| 44 | + </li> |
| 45 | + <li class="nav-item"> |
| 46 | + <a class="nav-link" href="https://github.com/revoframework/Revo">GitHub</a> |
| 47 | + </li> |
| 48 | + <li class="nav-item"> |
| 49 | + <a class="nav-link" href="https://docs.revoframework.net/">Documentation</a> |
| 50 | + </li> |
| 51 | + <li class="nav-item"> |
| 52 | + <a class="nav-link" href="https://docs.revoframework.net/general/super-short-example">Short example</a> |
| 53 | + </li> |
| 54 | + <li class="nav-item"> |
| 55 | + <a class="nav-link" href="./license.html">License</a> |
| 56 | + </li> |
| 57 | + </ul> |
| 58 | + </div> |
| 59 | + </div> |
| 60 | + </nav> |
| 61 | + |
| 62 | + <!-- Page Content --> |
| 63 | + <div class="container"> |
| 64 | + |
| 65 | + <!-- Heading Row --> |
| 66 | + <div class="row my-4"> |
| 67 | + <div class="col-6 text-center m-auto"> |
| 68 | + <img class="img-fluid rounded" src="./revo.png" alt="Revo framework"> |
| 69 | + </div> |
| 70 | + </div> |
| 71 | + <!-- /.row --> |
| 72 | + |
| 73 | + <!-- Call to Action Well --> |
| 74 | + <div class="card text-white bg-secondary my-4 text-center"> |
| 75 | + <div class="card-body"> |
| 76 | + <p class="text-white m-0">Revo is a flexible application framework for modern C#/.NET applications built with <em>event sourcing</em>, <em><abbr title="Command-Query Responsibility Segregation">CQRS</abbr></em> and <em><abbr title="Domain-Driven Design">DDD</a></em>, released under open MIT license.</p> |
| 77 | + </div> |
| 78 | + </div> |
| 79 | + |
| 80 | + <!-- Content Row --> |
| 81 | + <div class="row"> |
| 82 | + <div class="col-md-4 mb-4"> |
| 83 | + <div class="card h-100"> |
| 84 | + <div class="card-body"> |
| 85 | + <h2 class="card-title">Getting started</h2> |
| 86 | + <p class="card-text">Get started by browsing examples, downloading the framework and reading the guide.</p> |
| 87 | + </div> |
| 88 | + <div class="card-footer"> |
| 89 | + <a href="https://docs.revoframework.net/general/getting-started" class="btn btn-primary">Get started</a> |
| 90 | + </div> |
| 91 | + </div> |
| 92 | + </div> |
| 93 | + <!-- /.col-md-4 --> |
| 94 | + <div class="col-md-4 mb-4"> |
| 95 | + <div class="card h-100"> |
| 96 | + <div class="card-body"> |
| 97 | + <h2 class="card-title">GitHub</h2> |
| 98 | + <p class="card-text">Browse the source code or get involved in the development and contribute on GitHub.</p> |
| 99 | + </div> |
| 100 | + <div class="card-footer"> |
| 101 | + <a href="https://github.com/revoframework/Revo" class="btn btn-primary">Browse source</a> |
| 102 | + </div> |
| 103 | + </div> |
| 104 | + </div> |
| 105 | + <!-- /.col-md-4 --> |
| 106 | + <div class="col-md-4 mb-4"> |
| 107 | + <div class="card h-100"> |
| 108 | + <div class="card-body"> |
| 109 | + <h2 class="card-title">Documentation</h2> |
| 110 | + <p class="card-text">Read the framework documentation and reference guide.</p> |
| 111 | + </div> |
| 112 | + <div class="card-footer"> |
| 113 | + <a href="https://docs.revoframework.net/" class="btn btn-primary">Read documentation</a> |
| 114 | + </div> |
| 115 | + </div> |
| 116 | + </div> |
| 117 | + <!-- /.col-md-4 --> |
| 118 | + |
| 119 | + </div> |
| 120 | + <!-- /.row --> |
| 121 | + |
| 122 | + </div> |
| 123 | + <!-- /.container --> |
| 124 | + |
| 125 | + <!-- Footer --> |
| 126 | + <footer class="py-3 bg-dark"> |
| 127 | + <div class="container"> |
| 128 | + <p class="m-0 text-center text-white">Copyright © 2017-2019 Martin Zima</p> |
| 129 | + </div> |
| 130 | + <!-- /.container --> |
| 131 | + </footer> |
| 132 | + |
| 133 | + <!-- Bootstrap core JavaScript --> |
| 134 | + <script src="vendor/jquery/jquery.min.js"></script> |
| 135 | + <script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script> |
| 136 | + |
| 137 | + </body> |
| 138 | + |
| 139 | +</html> |
0 commit comments