Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
archimag committed Jun 23, 2009
1 parent bf359dd commit 62b34a1
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions src/resources.lisp
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
;;; resources.lisp

(defpackage :planet.resource
(:use :cl)
(:export :css-file
:feed-icon/10x10
:feed-icon/14x14))

(in-package :planet.resource)

(defparameter *resource-dir* (merge-pathnames "resources/"
(asdf:component-pathname (asdf:find-system :planet))))

(defun css-file ()
(merge-pathnames "planet.css" *resource-dir*))

(defun feed-icon/10x10 ()
(merge-pathnames "feed-icon-10x10.png" *resource-dir*))

(defun feed-icon/14x14 ()
(merge-pathnames "feed-icon-10x10.png" *resource-dir*))

0 comments on commit 62b34a1

Please sign in to comment.