3D viewer and post processing of reservoir models
Go to file
Magne Sjaastad f132291d81 Fix footer
2019-04-30 11:10:33 +02:00
_data Updates for 2019.04 2019-04-30 11:00:46 +02:00
_includes Fix footer 2019-04-30 11:10:33 +02:00
_layouts Added Project folder and announced new development project 2016-04-28 10:55:01 +02:00
_posts Updates for 2019.04 2019-04-30 11:00:46 +02:00
css Bulk commit of new documentation for v2016.11 2016-11-29 10:53:43 +01:00
docs Updates for 2019.04 2019-04-30 11:00:46 +02:00
fonts Create gh-pages branch via GitHub 2014-04-04 19:24:42 +02:00
images Updates for 2019.04 2019-04-30 11:00:46 +02:00
javascripts Create gh-pages branch via GitHub 2014-04-04 19:24:42 +02:00
js Bulk commit of documentation for v2017.05 2017-05-31 10:19:45 +02:00
news Bulk commit of documentation for ResInsight 2018.05 2018-05-22 14:30:38 +02:00
project Updates for 2019.04 2019-04-30 11:00:46 +02:00
releasenotes Updates for 2019.04 2019-04-30 11:00:46 +02:00
stylesheets Create gh-pages branch via GitHub 2014-04-04 19:24:42 +02:00
_config.yml Bulk commit of new documentation for v2016.11 2016-11-29 10:53:43 +01:00
.gitignore Added CNAME to .gitignore to avoid being pushed to forks 2014-08-06 08:12:33 +02:00
CNAME Create CNAME 2018-05-04 20:04:57 +02:00
Gemfile Initial framework based on Jekyll gh-pages 2014-04-07 22:33:12 -07:00
index.html Updates for 2019.04 2019-04-30 11:00:46 +02:00
params.json Create gh-pages branch via GitHub 2014-04-04 19:24:42 +02:00
README.md Bulk commit of documentation for v2017.05 2017-05-31 10:19:45 +02:00
search.md Bulk commit of documentation for v2017.05 2017-05-31 10:19:45 +02:00

ResInsight

3D viewer and post processing of reservoir models

Procedure for editing in a fork

  • Fork ResInsight into your personal repository
  • Open Settings
    • Set gh-pages as default branch
    • Enable Git Hub Pages
  • delete the CNAME file in the fork
  • go to your_githubname.github.io/ResInsight and see your version of the site
  • commit your changes, and they will appear on the site after a few seconds

Edit of site layout

The layout of the site is mainly controlled by the css-files located in _includes/css.

Puliblishing to main gh-pages

The history is not important, so publishing of the new site to ResInsight gh-pages is easiest done by manually copying your site changes into a single checkin on ResInsight/gh-pages.

You will then have to delete all the files in ResInsight/gh-pages exept the .git directory and CNAME. Then copy all the files from the new "site" exept the .git directory and CNAME.

MathJax

The following script can be placed in top.html to enable parsing of math formulas.

  <script type="text/x-mathjax-config">
    MathJax.Hub.Config({
      messageStyle: "none",
      showProcessingMessages: "false",
      "HTML-CSS": {
        scale: 80
      },
      asciimath2jax: {
        delimiters: [['$','$']]
      }
  });
  </script>
  <script src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=AM_CHTML" type="text/javascript">
</script>