If I recall correctly and your script is a CGI script, all you need is a few here documents in the right places.
First, you will need to find where the script generates the HTML <head> block and add:
print <<'EOT'; <meta name="viewport" content="width=device-width, initial-scale=1, +maximum-scale=1"> <link type="text/css" rel="stylesheet" href="../hideo/bootstrap/css/ +bootstrap.min.css"> <link href='http://fonts.googleapis.com/css?family=Arvo' rel='styles +heet' type='text/css'> <link type="text/css" rel="stylesheet" href="../hideo/font-icons/cus +tom-icons/css/custom-icons.css"> <link type="text/css" rel="stylesheet" href="../hideo/css/layout.css +"> <link type="text/css" id="colors" rel="stylesheet" href="../hideo/cs +s/colors.css"> <link type="text/css" rel="stylesheet" href="../hideo/css/custom.css +"> <!--[if lt IE 9]><script src="http://html5shim.googlecode.com/svn/tr +unk/html5.js"></script><![endif]--> <script src="hideo/js/modernizr-2.6.1.min.js"></script> <link rel="shortcut icon" href="../hideo/images/favicon.ico"> <link rel="apple-touch-icon" href="../hideo/images/apple-touch-icon. +png"> <link rel="apple-touch-icon" sizes="72x72" href="../hideo/images/app +le-touch-icon-72x72.png"> <link rel="apple-touch-icon" sizes="114x114" href="../hideo/images/a +pple-touch-icon-114x114.png"> <link rel="apple-touch-icon" sizes="144x144" href="../hideo/images/a +pple-touch-icon-144x144.png"> EOT
Then you will need to add similar constructs in the appropriate places for the HTML <body> text.
In reply to Re: How To Use Bootstrap Code in Perl Script?
by jcb
in thread How To Use Bootstrap Code in Perl Script?
by glennpm
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |