Skip to content

Commit 9526139

Browse files
committed
link wordpress theme stylesheet within fractal templates
1 parent 77269fe commit 9526139

File tree

2 files changed

+2
-16
lines changed

2 files changed

+2
-16
lines changed

elements/_template-default.hbs

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,8 @@
66
<meta name="robots" content="noindex">
77
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
88
<link href="{{ path '/ui-assets/images/favicon.ico' }}" rel="shortcut icon">
9+
<link rel="stylesheet" href="https://cdlib.org/wp-content/themes/cdlib/style.css" media="all">
910
<link rel="stylesheet" href="{{ path '/ui-assets/css/main.css' }}" media="all">
10-
<style>
11-
/***** Demo Styles (not used in production CSS) *****/
12-
/* matches selector in WP styles.css: */
13-
.alignleft {
14-
display: inline;
15-
float: left;
16-
}
17-
</style>
1811
</head>
1912
<body>
2013
{{{ yield }}}

elements/_template-page.hbs

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,8 @@
55
<title>CDLIB UI</title>
66
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
77
<link href="{{ path '/ui-assets/images/favicon.ico' }}" rel="shortcut icon">
8+
<link rel="stylesheet" href="https://cdlib.org/wp-content/themes/cdlib/style.css" media="all">
89
<link rel="stylesheet" href="{{ path '/ui-assets/css/main.css' }}" media="all">
9-
<style>
10-
/***** Demo Styles (not used in production CSS) *****/
11-
/* matches selector in WP styles.css: */
12-
.alignleft {
13-
display: inline;
14-
float: left;
15-
}
16-
</style>
1710
</head>
1811
<body>
1912
{{{ yield }}}

0 commit comments

Comments
 (0)