条件に応じてスタイルシートをレンダリングする必要があるという要件があります。
<script type="text/javascript">
var isWelcomePage = window.location.pathname.match(/^\welcome/);
if(isWelcomePage){
<link rel="stylesheet" type="text/css" href="welcome.css"/>
}
</script>
これは可能ですか?または何か良い方法はありますか?