Skip to content

Commit

Permalink
Add files
Browse files Browse the repository at this point in the history
  • Loading branch information
tkuhn committed Jul 16, 2018
1 parent 450a2f8 commit 0c7671b
Show file tree
Hide file tree
Showing 12 changed files with 156 additions and 19 deletions.
73 changes: 56 additions & 17 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,40 +16,79 @@ <h1>Content for Knowledge and Media Portfolio</h1>
</div>


<h2>Weekly Summaries</h2>
<h2>Week 1</h2>

<ul>
<li><a href="summaries1.html">Week 1</a></li>
<li><a href="summaries2.html">Week 2</a></li>
<li><a href="summaries3.html">Week 3</a></li>
<li><a href="summaries4.html">Week 4</a></li>
<li><a href="summaries5.html">Week 5</a></li>
<li><a href="summaries6.html">Week 6</a></li>
<li><a href="summaries7.html">Week 7</a></li>
<li><a href="summaries1.html">Summaries for Week 1</a></li>
<li><a href="tool1.png">Screenshot for Tool 1: Coggle</a></li>
</ul>


<h2>Tools</h2>
<h2>Week 2</h2>

<p>...</p>
<ul>
<li><a href="summaries2.html">Summaries for Week 2</a></li>
<li><a href="tool2.png">Screenshot for Tool 2: Semantic Scholar</a></li>
</ul>


<h2>Week 3</h2>

<ul>
<li><a href="summaries3.html">Summaries for Week 3</a></li>
<li><a href="tool3.png">Screenshot for Tool 3: Syllogisms</a></li>
<li><a href="tool4.png">Screenshot for Tool 4: WebProtégé</a></li>
</ul>


<h2>Week 4</h2>

<ul>
<li><a href="summaries4.html">Summaries for Week 4</a></li>
<li><a href="tool5.png">Screenshot of Tool 5: AceWiki</a></li>
<li><a href="tool6.png">Screenshot of Tool 6: WebVOWL</a></li>
</ul>


<h2>Week 5</h2>

<ul>
<li><a href="summaries5.html">Summaries for Week 5</a></li>
<li><a href="tool7.png">Screenshot of Tool 7: WikiData</a></li>
<li><a href="tool8.png">Screenshot of Tool 8: RDFa Play</a></li>
</ul>


<h2>Flash Presentation</h2>
<h2>Week 6</h2>

<ul>
<li><a href="summaries6.html">Summaries for Week 6</a></li>
</ul>

<p>
<a href="flash-presentation-slide.svg">
<img src="flash-presentation-slide.svg" alt="" style="border:1px solid black">
</a>
</p>

<h2>Poster and Paper</h2>
<h2>Week 7</h2>

<ul>
<li><a href="summaries7.html">Summaries for Week 7</a></li>
</ul>


<h2>Presentation, Poster, and Paper</h2>

<ul>
<li><a href="flash-presentation-slide.svg">Flash Presentation</a></li>
<li><a href="poster.pdf">Poster</a></li>
<li><a href="paper.html">Short Paper</a></li>
</ul>


<h2>Final Portfolio</h2>

<ul>
<li><a href="portfolio.html">Complete Final Portfolio</a></li>
</ul>


</body>
</html>

52 changes: 52 additions & 0 deletions paper.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="https://dokie.li/media/css/lncs.css" />
<title>Short Paper on Knowledge and Media</title>
</head>

<body>

<h1>Short Paper on Knowledge and Media (replace with your own title)</h1>

<div id="authors">
Your Name Here
</div>

<div class="counter">


<h3>Introduction</h3>

<p>Write your paper here. You don't need to have an abstract.</p>


<h3>Approach/Analysis/Case Study/...</h3>

<p>...</p>


<h3>Discussion</h3>

<p>...</p>

</div>


<h3>References</h3>

<ul>
<li>Replace this with reference 1</li>
<li>Replace this with reference 2</li>
<li>...</li>
</ul>


<script src="scripts.js"></script>
<!--<script src="https://rawgit.com/ucds-vu/km2018-portfolio-template/master/scripts.js"></script>-->

</body>
</html>

40 changes: 40 additions & 0 deletions portfolio.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="https://dokie.li/media/css/lncs.css" />
<title>Knowledge and Media Portfolio</title>
</head>

<body>

<h1>Knowledge and Media Portfolio</h1>

<div id="authors">
Your Name Here
</div>


<h2>Background</h2>

<p>...</p>


<h2>Flash Presentation</h2>

<p>
<a href="flash-presentation-slide.svg">
<img src="flash-presentation-slide.svg" alt="" style="border:1px solid black">
</a>
</p>


<h2>Paper</h2>

<p>...</p>


</body>
</html>

10 changes: 8 additions & 2 deletions scripts.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
function getWordCount(node) {
return node.textContent.trim().split(" ").length;
}
var paragraphs = document.querySelectorAll(".counter")
var paragraphs = document.querySelectorAll("p.counter")
for ( var i = 0; i < paragraphs.length; i++ ) {
p = paragraphs[i];
c = p.textContent.trim().split(" ").length;
c = p.textContent.trim().split(/\s+/).length;
p.innerHTML = p.innerHTML + " <span style='color: gray'><em>(" + c + " words</em>)</span>";
}
var paragraphs = document.querySelectorAll("div.counter")
for ( var i = 0; i < paragraphs.length; i++ ) {
p = paragraphs[i];
c = p.textContent.trim().split(/\s+/).length;
p.innerHTML = p.innerHTML + "\n<p style='color: gray; text-indent: 0; margin-top: 1em'><em>(" + c + " words</em>)</p>";
}
Binary file added tool1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added tool2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added tool3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added tool4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added tool5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added tool6.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added tool7.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added tool8.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 0c7671b

Please sign in to comment.