diff --git a/README.md b/README.md index 0261a97..6ab06fa 100644 --- a/README.md +++ b/README.md @@ -28,6 +28,8 @@ Documentation can be found [here](https://hyperglass.readthedocs.io), or in the ## Preview +For screenshots, see [here](blob/master/screenshots.md), or the `screenshots/` directory. + ## Platform Support Theoretically, any vendor supported by Netmiko can be supported by Hyperglass. However, I am currently listing platforms I have personally tested and verified full functionality with: diff --git a/hyperglass/templates/footer.html b/hyperglass/templates/footer.html index cca6095..1d74b67 100644 --- a/hyperglass/templates/footer.html +++ b/hyperglass/templates/footer.html @@ -6,6 +6,7 @@ {{ footer_content }} + {% if enable_credit == true %}
+ {% endif %} diff --git a/hyperglass/templates/index.html b/hyperglass/templates/index.html index c432fc9..96dd83f 100644 --- a/hyperglass/templates/index.html +++ b/hyperglass/templates/index.html @@ -219,7 +219,9 @@ - {% include "templates/footer.html" %} + {% if enable_footer == true %} + {% include "templates/footer.html" %} + {% endif %} {% endblock %} diff --git a/screenshots.md b/screenshots.md new file mode 100644 index 0000000..fc857e2 --- /dev/null +++ b/screenshots.md @@ -0,0 +1,30 @@ + + +# Main Page + +![](screenshots/main.png) + +# BGP Lookups + +## BGP Route + +![](screenshots/lookup_bgp_route.png) + +## BGP Community +![](screenshots/lookup_bgp_community.png) + +## BGP AS_PATH + +![](screenshots/lookup_bgp_aspath.png) + +# Ping + +![](screenshots/lookup_ping.png) + +# Traceroute + +![](screenshots/lookup_traceroute.png) + +# Help Text + +![](screenshots/helptext.png) diff --git a/screenshots/helptext.png b/screenshots/helptext.png new file mode 100644 index 0000000..c26796c Binary files /dev/null and b/screenshots/helptext.png differ diff --git a/screenshots/lookup_bgp_aspath.png b/screenshots/lookup_bgp_aspath.png new file mode 100644 index 0000000..15a05b4 Binary files /dev/null and b/screenshots/lookup_bgp_aspath.png differ diff --git a/screenshots/lookup_bgp_community.png b/screenshots/lookup_bgp_community.png new file mode 100644 index 0000000..959594f Binary files /dev/null and b/screenshots/lookup_bgp_community.png differ diff --git a/screenshots/lookup_bgp_route.png b/screenshots/lookup_bgp_route.png new file mode 100644 index 0000000..fa6056b Binary files /dev/null and b/screenshots/lookup_bgp_route.png differ diff --git a/screenshots/lookup_ping.png b/screenshots/lookup_ping.png new file mode 100644 index 0000000..344f0c8 Binary files /dev/null and b/screenshots/lookup_ping.png differ diff --git a/screenshots/lookup_traceroute.png b/screenshots/lookup_traceroute.png new file mode 100644 index 0000000..2ea8c0b Binary files /dev/null and b/screenshots/lookup_traceroute.png differ diff --git a/screenshots/main.png b/screenshots/main.png new file mode 100644 index 0000000..8e5ede0 Binary files /dev/null and b/screenshots/main.png differ