Can one host an angular.js based static blog on Github?

前端 未结 3 1435
孤独总比滥情好
孤独总比滥情好 2020-12-23 04:44

I know one can host a Jekyl based static site/blog via Github pages. Can one do the same with a static site/blog based on AngularJS?

相关标签:
3条回答
  • 2020-12-23 05:38

    There is one conflict between Jekyll and Angular to be aware of.

    Liquid, which is included in Jekyll also uses {{ }} for evaluating expressions. To change the expressions that angular interprets (so it doesn't conflict with Liquid) use:

    var myapp;
    myApp = angular.module('myApp', []);
    
    myApp.config([
      '$interpolateProvider', function($interpolateProvider) {
        return $interpolateProvider.startSymbol('{(').endSymbol(')}');
      }
    ]);
    

    Check out this blog post

    0 讨论(0)
  • 2020-12-23 05:42

    I would say yes considering all the angular UI github pages are in fact angular apps with demos:

    http://angular-ui.github.io/

    http://angular-ui.github.io/bootstrap/

    etc

    0 讨论(0)
  • 2020-12-23 05:43

    You can but you can't use html5 mode (removes the # from urls). If you use html5 mode, you have to redirect all requests to the root url since its a single page app. Since you can't use server side code on GitHub pages, you can't do this. So, if you don't mind the # in the url, go for it. If you want to use html5 mode, you need to look for hosting elsewhere.

    From the Angular docs...

    "Using [html5] mode requires URL rewriting on server side, basically you have to 
     rewrite all your links to entry point of your application (e.g. index.html)"
    

    EDIT: You can make use of some clever hacks to make this work if you really want to. The hacks are outlined in detail here. In summary, you rename your index.html to 404.html and github will serve it at all routes

    0 讨论(0)
提交回复
热议问题