UNPKG

fidomail2ipfs

Version:

Renders echomail messages from Fidonet in IPFS (the Distributed Web).

48 lines 1.64 kB
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags --> <title>{{title}}</title> {{twitterCard}} <!-- Bootstrap --> <link href="{{bootstrap}}/css/bootstrap.min.css" rel="stylesheet"> <!-- jQuery (necessary for Bootstrap's JavaScript plugins) --> <script src="https://code.jquery.com/jquery-3.1.1.min.js" integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8=" crossorigin="anonymous"></script> <!-- Include all compiled plugins (below), or include individual files as needed --> <script src="{{bootstrap}}/js/bootstrap.min.js"></script> <link href="{{EFGHCSS}}/efgh.css" rel="stylesheet"> <link href="{{FidoMail2IPFSCSS}}/fidomail2ipfs.css" rel="stylesheet"> <script src="{{TwitterEmoji}}/twemoji.min.js"></script> <script> $(function(){ if( twemoji ) twemoji.parse($('body')[0], { callback: function(icon, options){ switch( icon ){ case 'a9': // � copyright case 'ae': // � registered trademark case '2122': // � trademark return false; break; default: return options.base + options.size + '/' + icon + options.ext; break; } } }); }); </script> </head> <body class="FidoMail2IPFS"> <div class="container-fluid"> <div class="row"> <div class="col-xs-12"> {{FidonetMessage}} </div></div></div> </body> </html>