File: welcome_template.html

package info (click to toggle)
dynare 6.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 67,796 kB
  • sloc: cpp: 79,110; ansic: 28,917; objc: 12,445; yacc: 4,537; pascal: 1,993; lex: 1,441; sh: 1,132; python: 634; makefile: 628; lisp: 163; xml: 18
file content (37 lines) | stat: -rw-r--r-- 1,354 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Dynare Installer</title>
    <style>
      .center-text {
        text-align: center;
      }
      .bold-text {
        font-weight: bold;
      }
      code {
            font-family: "Courier New", Courier, monospace;
        }
    </style>
  </head>

  <body>
    <header class="center-text">
      <h1>Welcome to Dynare</h1>
      <p>Version VERSION_NO_SPACE</p>
      <p>DATE</p>
    </header>

    <main>
      <p>Thank you for choosing Dynare!</p>
      <p>This installation does not require administrative privileges. If for some reason admin rights are requested, use 'Change Install Location' and select 'Install for me only'.</p>
      <p>By default Dynare will be installed into /Applications/Dynare. To modify the installation path, click <strong>Customize</strong> after accepting the license. Then, under <strong>Location</strong>, select your desired folder.</p>
      <p>Installing into /Applications/Dynare might fail if you have older versions of Dynare installed in /Applications/Dynare. To fix this, modify the ownership by executing the following command in Terminal.app:</p>
      <code>
      sudo chown -R "$USER":staff /Applications/Dynare
      </code>      
    </main>

  </body>
</html>